📅  最后修改于: 2020-10-31 04:13:13             🧑  作者: Mango
在System.IO命名空间中找到C#TextReader类。它表示可用于阅读文本或一系列连续字符的阅读器。
让我们看一下TextReader类的简单示例,该类读取数据直到文件结尾。
using System;
using System.IO;
namespace TextReaderExample
{
class Program
{
static void Main(string[] args)
{
using (TextReader tr = File.OpenText("e:\\f.txt"))
{
Console.WriteLine(tr.ReadToEnd());
}
}
}
}
输出:
Hello C#
C# File Handling by JavaTpoint
让我们看一下TextReader类的简单示例,该类从文件中读取单行。
using System;
using System.IO;
namespace TextReaderExample
{
class Program
{
static void Main(string[] args)
{
using (TextReader tr = File.OpenText("e:\\f.txt"))
{
Console.WriteLine(tr.ReadLine());
}
}
}
}
输出:
Hello C#