C#读取文本文件streamreading
时间: 2023-07-12 15:10:15 浏览: 121
C#读文本文件
您可以使用以下代码来读取文本文件并将其存储在字符串变量中:
```csharp
using System.IO;
string path = "your_file_path.txt";
string content;
using (StreamReader reader = new StreamReader(path))
{
content = reader.ReadToEnd();
}
```
在上面的代码中,我们首先定义了文件路径变量 `path`,然后使用 `StreamReader` 类来读取文本文件。 `using` 语句用于确保在使用完 `StreamReader` 对象后将其关闭,从而释放资源。最后,我们使用 `ReadToEnd()` 方法将文件的所有内容读取到字符串变量 `content` 中。
阅读全文