C Sharp (C#) - File IO
Identify the error in this code snippet that reads all lines from "notes.txt":
string[] lines = File.ReadAllLines(notes.txt);
foreach (string line in lines)
{
Console.WriteLine(line);
}