+ 2
C# error
I was tryng to make code that has an int. As an output using. Console.writeline but this error occurred Playground\(14,4): error CS0103: The name 'console' does not exist in the current context
2 Antworten
+ 5
Hi,
It is because it is not console, but Console
The correct way:
Console.WriteLine()
Hope it helps you
0
When u Code in C# Don't Forget This"C# is sensetive of Capital and Small letters!"
Good Luck