C#使用System.IO.File类从文件读取
示例
您可以使用System.IO.File.ReadAllText函数将文件的全部内容读取为字符串。
string text = System.IO.File.ReadAllText(@"C:\MyFolder\MyTextFile.txt");
您还可以使用System.IO.File.ReadAllLines函数将文件读取为行数组:
string[] lines = System.IO.File.ReadAllLines(@"C:\MyFolder\MyTextFile.txt");
以上是 C#使用System.IO.File类从文件读取 的全部内容, 来源链接: utcz.com/z/355825.html