StringReader類在C#中通常用于從字符串中讀取數據。它提供了一種在字符串中逐行讀取數據的簡單方式。下面是一個示例,展示了如何使用StringReader類從文件中讀取數據:
using System;
using System.IO;
class Program
{
static void Main()
{
string filePath = @"C:\example.txt";
// 讀取文件內容并保存到字符串中
string fileContent = File.ReadAllText(filePath);
// 使用StringReader從字符串中讀取數據
using (StringReader reader = new StringReader(fileContent))
{
string line;
while ((line = reader.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
}
}
在上面的示例中,我們首先使用File.ReadAllText方法從文件中讀取內容,并將其保存到一個字符串中。然后,我們通過創建一個StringReader對象來逐行讀取字符串中的數據,并將每行打印到控制臺上。
這樣,我們就可以使用StringReader類在文件處理中讀取數據。請注意,在使用完StringReader對象后,我們應該及時關閉它,以釋放資源。