You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While reading the data in the about.json file in AboutUsPage, it gives an error if there are Turkish characters. The error occurs in the following function.
private static T PopulateData<T>(string fileName)
{
var file = "OnBoarding2.Data." + fileName;
var assembly = typeof(App).GetTypeInfo().Assembly;
T data;
using (var stream = assembly.GetManifestResourceStream(file))
{
var serializer = new DataContractJsonSerializer(typeof(T));
**data = (T)serializer.ReadObject(stream);**
}
return data;
}
Error : System.Reflection.TargetInvocationException: 'Exception has been thrown by the target of an invocation.'
The text was updated successfully, but these errors were encountered:
Hello,
While reading the data in the about.json file in AboutUsPage, it gives an error if there are Turkish characters. The error occurs in the following function.
Error : System.Reflection.TargetInvocationException: 'Exception has been thrown by the target of an invocation.'
The text was updated successfully, but these errors were encountered: