Intellisense microsoft visual studio 2005 c#

  • Thread starter Thread starter Marco
  • Start date Start date
M

Marco

Why intellisense in c++ project differ to c# project?
In c# when I type a character intellisense start and I see all (local
variable,
system class, ....).In c++ project intellisense don't start if I type
a character.
Why?I must set some option in c++ project?
Another feature is that in c# project, user class are displayed in a
particular color and in c++ project user class are black.
 
Hi Marco,

My guess is that because C# is more tightly controlled with .Net and that C++ doesn't necessarily use .Net at all it is easier for Intellisense to "know" what you want. You could argue that Visual Studio.Net is written for .Net Framework and C# being == .Net Framework any other language (possibly with the exception of VB.Net) will have less features or implemented at a later time.
 
Back
Top