Skip to content

Instantly share code, notes, and snippets.

@disklosr
Created November 11, 2015 15:20
Show Gist options
  • Save disklosr/a618326c7d614a65d2cb to your computer and use it in GitHub Desktop.
Save disklosr/a618326c7d614a65d2cb to your computer and use it in GitHub Desktop.
var filestream = new FileStream(textFilePath,
FileMode.Open,
FileAccess.Read,
FileShare.ReadWrite);
var file = new StreamReader(filestream, Encoding.UTF8, true, 128);
while ((lineOfText = file.ReadLine()) != null)
{
//do something with the lineOfText
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment