show/hide this revision's text 2 lines

Instead of using a StreamReader and then trying to find lines inside the String file variable, you can simply use File.ReadAllLines:

string[] orawebs lines = File.ReadAllLines(file);
foreach(string line in orawebslines)
   Console.WriteLine(line);
show/hide this revision's text 1

Instead of using a StreamReader and then trying to find lines inside the String file variable, you can simply use File.ReadAllLines:

string[] orawebs = File.ReadAllLines(file);
foreach(string line in orawebs)
   Console.WriteLine(line);