Sign in
Eric Jarvi
Search
Options
RSS for posts
Atom
OK
February, 2005
MSDN Blogs
>
Eric Jarvi
>
February, 2005
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Eric Jarvi
StreamReader to end of file
Posted
over 8 years ago
by
ejarvi
Here's some code for reading through a StreamReader one line at a time until EOF (where line is a string and sr is a StreamReader): while (( line = sr.ReadLine()) != null ) { //your code here }
Page 1 of 1 (1 items)