- Intellisence in Csharp is not that good compared to VB.Net or am I supposed to configure something in my VS2003:

When I type for example:

1/ SqlDataAda without finishing it, intellisence doesn t propose for me the complete word: SqlDataAdapter instead, he leaves SqlDataAda as is

2/ When I type for ex the whole word: SqlDataAdapter if I erase the last 3 characters pter with back space, VB normally redisplays the complte keyword SqlDataAdapter but Csharp doesn t display anything

The same thing for bollean variables , when I do: myBool= VS2003 doesn t display for me the scroll list values in advance (true and false), but instead I have to write them manually.

Thank you.




Answer this question

- Intellisence in Csharp is not that good compared to VB.Net or am I supposed to configure something in my VS2003:

  • Trisha1802

    Intellisense in C Sharp is not the same as in VB

    When you typ Sql or SqlData or SqlDataAda then try to press Ctrl+Spacebar then it will display intellisense of those Classes based on the word and you can select from those.

    The second one the boolean you have to type because CSharp works as just like java(which doesn't have intellisence).



  • Bastiaan Molsbeck

    Actually, in VS 2005 it's the other way round! C# is good, VB is poor IMO, especially the way code snippets work.


  • Blue-Fire

    R. Tutus -

    I'd recommend that you try out the new C# IntelliSense in VS2005. You'll find that when you start typing SqlDataAda...you'll see the IntelliSense list pop up and you'll be able to complete on it. If it's not in the list, you'll notice that after you type the full name, a small red smart tag will appear. Clicking on the smart tag will prompt you to automatically add the using directive at the top of the file.

    For the second case, yes, IntellISense in C# doesn't provide this for you. This is something we've received feedback on though.

    Thanks,

    Karen



  • - Intellisence in Csharp is not that good compared to VB.Net or am I supposed to configure something in my VS2003: