I've been following two tutorials on some Visual C++ fundamentals but they all seem to lack the information on how I get the intellisense going in Visual Studio 2010.
The following code snippet is what I have
#using<mscorlib.dll>
#using<System.Windows.Forms.dll>
using namespace System::Windows::Forms;
int main()
{
MessageBox::Show("ohai!");
return 0;开发者_如何学C
}
I would like to be able to just write MessageBox::
and the press ctrl + space and get a nice view of the Methods and properties. But it seems like I don't get that.
Suggestions? Did I miss to include something?
Do I only get intellisense when my IDE knows the Header files?
VS2010 does not currently support IntelliSense in C++/CLI as reported on the Visual C++ Team Blog.
Visual Assist is a commercial VS2010 extension that you may find useful in this regard.
See also this question.
精彩评论