In following sinppet of code, I would like to ask: How does the author evaluates the variable 'line' in the while loop before he initialize it with a value?
StreamReader myReader = new StremReader("Values.txt");
string line = "";
while (**line != null**)
{
line = myReader.ReadLine();
if (line != null)
console.WriteLine(line);
}
myReader.Close();
console.ReadLine();
nullreference