Skip to content

Instantly share code, notes, and snippets.

@sdurandeu
Last active December 20, 2015 20:51
Show Gist options
  • Select an option

  • Save sdurandeu/281849d26705c30fc323 to your computer and use it in GitHub Desktop.

Select an option

Save sdurandeu/281849d26705c30fc323 to your computer and use it in GitHub Desktop.
Open a File for Reading
using System.IO;
using (var streamReader = File.OpenText("myfile.txt"))
{
string line = streamReader.ReadLine();
while (line != null)
{
Console.WriteLine(line);
line = streamReader.ReadLine();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment