Read the entire text file in CSharp
Description
The following code shows how to read the entire text file.
Example
/*from w w w . j a v a 2 s . c o m*/
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
public class MainClass
{
public static void Main()
{
Stream s = new FileStream("c:\\test.txt", FileMode.Open);
using (StreamReader sr = new StreamReader(s, Encoding.UTF8))
{
Console.WriteLine(sr.ReadToEnd());
}
}
}