Reading from the Console with C#

Sometimes we need to read from the terminal in an app. Easy:

WriteLine();
string line = ReadLine();
ConsoleKeyInfo key = ReadKey();
Write();