Xamarin Forms 程序不想从文本文件中读取文本

问题描述 投票:0回答:0

在一个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))

还没试过,还是一样的错误。告诉我如何修复它,或者如何制作另一种读写文本文件的方法

c# .net xamarin xamarin.forms xamarin.android
© www.soinside.com 2019 - 2024. All rights reserved.