问题
Well, i've reinstalled Visual Studio 2010 (trial, from Microsoft site) but i'm noticing that Intellisense doesn't work. I've done this:
The thing of "No common language RunTime Support" "Autolist Members" and "Parameter information"
But still i only get:
Intellisense: 'No additional available information'
It's a not precompiled header project, i don't have stdafx files...
How i make intellisense work? :(!
回答1:
No common language RunTime Support
This means you are not programming in C++. You're writing in C++/CLI instead. They are quite different languages; C++/CLI is more in character with C#. Visual Studio 2010 does not support Intellisense in C++/CLI projects. You need to use a native project, or live without Intellisense.
来源:https://stackoverflow.com/questions/6475122/intellisense-on-c-visual-studio-2010