+ 3
'console' does not have defintion for 'writeline'. What does that means.?
'console' does not have defintion for 'writeline'. What does that means.?
4 Respuestas
+ 8
Without your code I can only guess, but I think you write it wrong it should be Console.WriteLine (l is not lowercase letter).
+ 10
C# is a case sensitive language, meaning 'Console' and 'console', also 'WriteLine' and 'writeline' are not the same thing, mind the case in how you write the syntax, pay attention to how they are written in the lesson, and you'll be fine : )
+ 4
C# is case sensitive, so...
Do "Console" instead of "console"
Do "WriteLine" instead of "writeline"
+ 2
You must to be inside the block of (Main )
be sure that you are already in it