因为我喜欢开发文件I / O应用程序,所以我的新开发平台是Windows Mobile。有什么方法可以读取所有文件,而无需使用File.ReadAllText
?
因为Windows Mobile没有此功能。
最佳答案
自己写:
static string ReadAllText(string path) {
using (var r = new StreamReader(path)) {
return r.ReadToEnd();
}
}
关于c# - 没有File.ReadAllText,有什么办法吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1723468/