Guest User

Untitled

a guest
May 21st, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. StreamReader sr = new StreamReader(path,Encoding.Default);
  2. String line;
  3. while ((line = sr.ReadLine()) != null)
  4. {
  5. Console.WriteLine(line.ToString());
  6. }
Add Comment
Please, Sign In to add comment