0
So in C# what is the difference between Console.Write and Console.WriteLine because I'm having trouble correlating between them.
Stuff about C#
3 Réponses
0
WriteLine means after printing value on console cursor will go on next line.
0
In other words, WriteLine simply add "\n" to your text, that's it.