I don't know if I have done anything wrong, but when I try to write code there are no intellisense popups indicating options or errors. I am creating a CLR/CLI type of project with Microsoft's Visual C++ 2010.
相关问题
- Visual Studio 2010 randomly says the command line
- efficiently calling unmanaged method taking unmana
- (ASP.NET) Project file must include 'WindowsBa
- Partial Form Class C# - Only display code view for
- How to pass C# method as a callback to CLI/C++ fun
相关文章
- How to show location of errors, references to memb
- Log4Net Multiple Projects
- Compiling error in C++ project with C and C++ code
- How to use Mercurial from Visual Studio 2010?
- Visual Studio 2015 JSX/ES2015 syntax highlighting
- VSIX: execute code on VS startup
- Copy different file to output directory for releas
- How do we alias a Sql Server instance name used in
You're not doing anything wrong, Intellisense is not supported in Managed C++ (C++/CLI).
There is a long blog post explaining the details at the Visual C++ blog.
Edit: Correcting name of the blog as per comment. :)
See the 2nd comment, in this blog post from May 2009: http://blogs.msdn.com/b/vcblog/archive/2009/05/27/rebuilding-intellisense.aspx
excerpt:
The wording is a little opaque, but I think the meaning is: there is no intellisense in C++/CLI projects in VS2010.