0
В чем отличие
В чем разница? Console.WriteLine("hello world"); И Console.Write("hello world");
2 Answers
+ 2
В первом случае курсор будет перенесён на следующую строку, во втором - нет
0
The difference is:
        Console.WriteLine("hello world");   // inserts a newline character after printing the text
                                                                              // in other word it will print the text and then jump to the next line
        Console.Write("hello world"),   // prints the text passed in but does not jump to the next line.



