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);
