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.
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.'
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.'