gpt4 book ai didi

c# - 没有 File.ReadAllText 有什么办法吗?

转载 作者:太空宇宙 更新时间:2023-11-03 20:43:30 25 4
gpt4 key购买 nike

因为我喜欢开发文件 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com