C Sharp (C#) - File IO
What is wrong with this code that tries to read a file?
using var reader = new StreamReader("data.txt");
string content = reader.ReadToEnd;
Console.WriteLine(content);