C Sharp (C#) - File IO
What will be the output of this code snippet if the file "numbers.txt" contains the lines: "1", "2", "3"?
var lines = File.ReadAllLines("numbers.txt");
Console.WriteLine(lines.Length);