Skip to content

Instantly share code, notes, and snippets.

@NKid
Created November 28, 2012 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NKid/1f222942e242e5d01b29 to your computer and use it in GitHub Desktop.
Save NKid/1f222942e242e5d01b29 to your computer and use it in GitHub Desktop.
StreamReader
Using reader As New StreamReader(strFile)
While Not reader.EndOfStream
Dim strLine As String = reader.ReadLine()
Console.WriteLine(strLine)
End If
End While
End Using
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment