C Sharp Console.Write and Console.WriteLine - chrisbitm/python GitHub Wiki

Console.Write() in C# is a method used to output text to the Console Window, but without adding a newline at the end.

Console.Write("Game Over")
Console.Write(3+3)

However, Console.WriteLine() is used to Output Text to the Console Window by adding a new line.

Console.WriteLine("Game Over")
Console.Write(6*3)