Day 35
The Write Method
There is also a Write() method, which is similar to WriteLine().
The only difference is that it does not insert a new line at the end of the output:
Example
Console.Write("Hello World! ");
Console.Write("I will print on the same line.");
Comments
Post a Comment