c# streamreader read all text code example
Example: c# streamreader
// The StreamReader are using the Namespaces: System and system.IO
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
string line;
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line);
}
}