W
W. Danner
Okay, I have now started using a book to learn C#, but I think I have
something that really is an error in the IDE:
Somehow I managed not to use the Intellisense function (I think I used
backspace or something like that) and the word "system" appeared in
lower case letters:
System.Console.WriteLine(Summe1.ToString());
system.Console.Read();
Now I get an IDE error message:
Name "system" is not available in actual context.
Then, when I delete "system.Console.Read();" again and replace it with...
System.Console.Read();
.... then everything works fine. I have come across this problem quite
often now and it's really unnerving.
Does anybody know what I'm doing wrong?
Thank you.
Will.
something that really is an error in the IDE:
Somehow I managed not to use the Intellisense function (I think I used
backspace or something like that) and the word "system" appeared in
lower case letters:
System.Console.WriteLine(Summe1.ToString());
system.Console.Read();
Now I get an IDE error message:
Name "system" is not available in actual context.
Then, when I delete "system.Console.Read();" again and replace it with...
System.Console.Read();
.... then everything works fine. I have come across this problem quite
often now and it's really unnerving.
Does anybody know what I'm doing wrong?
Thank you.
Will.