Console.WriteLine
Console.WriteLine writes a line of text followed by a newline.
Console.WriteLine("First line");Console.WriteLine("Second line");Run the Application
Section titled “Run the Application”dotnet runResult
Section titled “Result”First lineSecond line