-
Notifications
You must be signed in to change notification settings - Fork 307
Open
Description
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.'
Metadata
Metadata
Assignees
Labels
No labels