0
Why does the c# print need a Console. at the beginning?
Console.writeLine()
3 odpowiedzi
+ 3
C# uses the Console as it's method of output
just as Java uses the System as its output method.
+ 3
Because the WriteLine method is inside the Console class, therefore, you have to specify it.
+ 1
good to know!