Error in IDE?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • W. Danner

    #1

    Error in IDE?

    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(Summe 1.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.





  • Jesse Houwing

    #2
    Re: Error in IDE?

    Hello 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(Summe 1.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.
    It's why I trained myself to unconciously hit crtl-space after each keyworldlike
    thing. It's now such a habit that I even do it in word and outlook sometimes,
    wondering why it isn't smart enough to complete the word I partially typed.

    Jesse


    Comment

    • W. Danner

      #3
      Re: Error in IDE?

      Well, if it's not an IDE error, is it possible to set an option like
      "Always convert to proper case"?

      Comment

      • W. Danner

        #4
        Re: Error in IDE?

        Sorry, I missed your post...
        What is the difference between Space and Ctrl+Space? I tried it but
        didn't see any difference...

        Comment

        • W. Danner

          #5
          Re: Error in IDE?

          Okay, I was only confused about your note about the autocomplete...
          I think I got it... Thanks.
          Will.

          Comment

          • Jesse Houwing

            #6
            Re: Error in IDE?

            Hello W. Danner,
            Okay, I was only confused about your note about the autocomplete...
            I think I got it... Thanks.
            Will.
            You're welcome :)

            Jesse


            Comment

            Working...