Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why Visual Studio in C++ is not as intelligent as it's in C#? [closed]

I'm wokring on a homework in C++ in Visual Studio 2010, I've found that Visual Studio is not as wonderful as it is in C#. No intellisense , No code formating and stupid load of error messages which they might be gone togother if one error has been fixed.

Why that?

like image 495
Homam Avatar asked Apr 29 '11 21:04

Homam


2 Answers

C++ is a much much more complex language than C# which makes it very hard for a tool to parse and provide Intellisense feedback.

like image 187
David Heffernan Avatar answered Sep 27 '22 01:09

David Heffernan


Microsoft has not been putting much effort into its C++ tools since .NET appeared. In a lot of ways, the current IDE is worse than Visual C++ 6.

Here is the Visual C++ team's blog entry about recent C++-related work and why there is no Intellisense for C++/CLI: http://blogs.msdn.com/b/vcblog/archive/2011/03/03/10136696.aspx

like image 29
Kristopher Johnson Avatar answered Sep 23 '22 01:09

Kristopher Johnson