StreamReader txt文本
时间: 2023-10-01 20:04:39 浏览: 85
您可以使用StreamReader类从文本文件中读取数据。以下是一个示例代码:
```csharp
using System;
using System.IO;
class Program
{
static void Main()
{
try
{
using (StreamReader sr = new StreamReader("example.txt"))
{
string line;
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
}
catch (Exception e)
{
Console.WriteLine("读取文件时出错: " + e.Message);
}
}
}
```
在上述示例中,我们使用StreamReader来打开名为"example.txt"的文本文件,并逐行读取其中的内容。通过循环读取每行数据,并使用Console.WriteLine将其输出到控制台。
请确保将代码中的"example.txt"替换为您实际要读取的文本文件的路径。
希望这可以帮助到您!如果您有任何其他问题,请随时提问。
阅读全文