DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Snippet For Read File In C#.net
Snippet for Read file in c#.net
string myFile = File.ReadAllText("C:\\fileToRead.txt");
Console.WriteLine(myFile );





