tiavec88
tiavec88

Reputation: 345

visual studio 2010 c++ intellisense

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!

Upvotes: 2

Views: 2324

Answers (1)

heavyd
heavyd

Reputation: 17721

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:

Upvotes: 1

Related Questions