2

Does somebody know how can I activate the intellisense for Visual Studio 2010 compiling in c++? When I write my code, functions inside a class never appear and this make the programming very difficult. Thanks in advance!

tiavec88
  • 345
  • 1
  • 4
  • 12

1 Answers1

1

Make your project a pure native C++ project (No CLR). Intellisense support for C++/CLI was removed in Visual Studio 2010, so only use C++/CLI where you absolutely must.

A couple of references below:

Community
  • 1
  • 1
heavyd
  • 17,303
  • 5
  • 56
  • 74
  • When I open my project's configuration properties I don't have CLR support activate. So, why I can't see intellisense? – tiavec88 Nov 14 '12 at 16:09