/ Published in: C#
URL: http://msdn.microsoft.com/en-us/library/aa287535%28v=vs.71%29.aspx
Expand |
Embed | Plain Text
// create reader & open file string line = "EMPTY LINE"; while ((line = tr.ReadLine()) != null) { Console.WriteLine(line); } // close the stream tr.Close();
You need to login to post a comment.
