在一个Xamarin forms程序中,我做了这样一个从.txt文件中读取文本的方法
public string ReadTextFromFile()
{
var assembly = typeof(App).GetTypeInfo().Assembly;
var stream = assembly.GetManifestResourceStream("NotificationApp.Assets.notifications.txt");
using (var reader = new StreamReader(stream))
{
return reader.ReadToEnd();
}
}
文件在 Assets 中(我只为 android 编写),但程序抛出错误 System.Reflection.TargetInvocationException: 'Exception has been thrown by the target of an invocation.'就行了(使用断点找到)
using (var reader = new StreamReader(stream))
还没试过,还是一样的错误。告诉我如何修复它,或者如何制作另一种读写文本文件的方法