Output operator to the screen in C#
There are two similar methods in C#: Console.Write()
and Console.WriteLine()
. Both output text to the console. The only difference between them is that the first method leaves the cursor on the line, while the second moves it to the next line.