Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在项目资源管理器“读、写”中访问不在 Windows Phone 7 隔离存储中的文本文件?我希望它出现在我的项目资源管理器中,我不希望它出现在隔离存储中..明白了吗?谢谢
我发现了一些对你有用的资源。
读取文件
var resource = System.Windows.Application.GetResourceStream(new Uri("textfile.txt", UriKind.Relative)
写文件
using (System.IO.StreamWriter writer = new System.IO.StreamWriter(fileName, true)) { writer.Write("Write some text here"); }
更多信息:
在 C# 中读取文件
在 windows phone 中读取文本文件