在C#中,可以使用StreamReader類來讀取txt文件。以下是一個示例代碼:
using System;
using System.IO;
class Program
{
static void Main()
{
try
{
// 指定txt文件的路徑
string path = @"C:\example.txt";
// 創建一個StreamReader對象來讀取文件
using (StreamReader sr = new StreamReader(path))
{
string line;
// 一次讀取一行,直到文件的末尾
while ((line = sr.ReadLine()) != null)
{
// 打印每一行的內容
Console.WriteLine(line);
}
}
}
catch (Exception e)
{
Console.WriteLine("讀取文件出錯:" + e.Message);
}
}
}
在上面的示例中,我們使用StreamReader類打開一個txt文件,然后使用ReadLine方法逐行讀取文件內容,并將每一行打印到控制臺。請注意,使用完StreamReader后,需要使用using語句或手動調用Dispose方法來釋放資源。