Visual Studio
Welcome to the Visual Studio UserVoice site. Let us know what you would like to see in future versions of the Visual Studio suite of products. This site is for suggestions and ideas. If you need to file a bug, visit the Visual Studio Connect site: http://connect.microsoft.com/visualstudio.
ASP.NET Runtime/Web Tooling suggestions have moved! All your ideas, including your votes, have been transferred and are searchable in the ASP.Net Uservoice forum. Please submit any new ASP.NET Runtime/Web Tooling suggestions, or vote on existing suggestions by going to http://aspnet.uservoice.com.
We look forward to hearing from you!
Thanks – Deon Herbert
Visual Studio Team
-
Support C++11 features
Support C++11 features
3,953 votesThe next version of Visual C++ (v11) will already implement a few new features, the ones highlighted here (http://blogs.msdn.com/b/vcblog/archive/2011/09/12/10209291.aspx).
We’re definitely looking at options to get more features into people’s hands before a complete release cycle (before v12). It would be premature to say anything more specific right now. Hopefully, in the coming months, we’ll have more to say about that.
-
Improve MFC
Like many developers we maintain and develop an extremely large enterprise MFC application. All in all about 1.5 million lines. Asides from the addition of ribbons and a few extra controls we have had very little improvements in how we can work with MFC or native Win32 apps (in fact, the speed has gone down and classwizard seems to have gone from bad to worse to gone). Can you consider:
1. Improving the Dialog editor so that we can lay out dialogs with guides and the extra alignment options that are standard with C# - automatically spacing items correctly and…
1,291 votes -
Multithreaded C/C++ linker
We build more than 600 C++ projects. We invested a lot into breaking them into parallel build-able blocks but any HW upgrade give us almost nothing in the end as the linking process is utilizing only one CPU :(
836 votes -
Support C++11 variadic templates
Support variadic templates http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2555.pdf
I have created as a separate idea to determine the priority of this feature from the rest of C++11 features
591 votes -
Provide refactoring for C++
Currently there is almost no refactoring support for C++. Even basic refactoring like renaming is missing.
548 votes -
Make the C++ project properties dialog resizable
The C++ project properties dialog is a pain to work with. Just try to enter a set of preprocessor defines for a serious project.
This has been vehemently complained about by users as long as I'm working with VC (1999), and you haven't managed to flip the resizable switch on it. Yet, in the same decade, you have found the resources to create a bunch of whole new languages and a VM to run them in, put a form designer into the IDE, spend incredible amounts of man years on the compiler used for Intellisense...
At least since VC7, that…
240 votes -
Support C++ initializer lists: std::vector<double> v = { 1, 2, 3.456, 99.99 };
See http://www2.research.att.com/~bs/C++0xFAQ.html#init-list
Some examples:
vector<double> v = { 1, 2, 3.456, 99.99 };
list<pair<string,string>> languages = {
{"Nygaard","Simula"}, {"Richards","BCPL"}, {"Ritchie","C"}
};map<vector<string>,vector<int>> years = {
{ {"Maurice","Vincent", "Wilkes"},{1913, 1945, 1951, 1967, 2000} },
{ {"Martin", "Ritchards"} {1982, 2003, 2007} },
{ {"David", "John", "Wheeler"}, {1927, 1947, 1951, 2004} }
};203 votes -
Support OpenMP 3.0 or 3.1
Version 3.0, released in May, 2008. Included in the new features, including tasks, better support for loop parallelism and nested parallelism. These new features are summarized in Appendix F of the OpenMP 3.0 specifications (http://www.openmp.org/mp-documents/spec30.pdf).
Version 3.1 (http://www.openmp.org/mp-documents/OpenMP3.1.pdf) of the OpenMP specification was released July 9, 2011.
162 votes -
Stop treating workarounds as a legitimate alternative to standards compliance
Particularly in the world of C++, where the delta between what the compiler accepts and what the standard says is quite large, it is common for people to report bugs against the compiler.
Often, however, these are met with refusals to fix the compiler, and claims that there are workarounds.
I would love you to change this policy.
Yes, sometimes there is a zero cost workaround to a particular flaw. But that's not a reason to not fix the bug. I write code that I wish to compile in g++, VC++, and sometimes even clang++. Being forced to avoid standard…
142 votes -
ISO C++ wrappers for WinRT
Now that WinRT has been unveiled, a lot of people have criticized the C++/CLI-like quasi-C++ that is the recommended way to interface with the API. And honestly, it looks reasonably nice. If we're willing to give up all hopes of using another compiler than VC11, and don't mind non-standard code in our C++ application, it seem a nice way to interface with WinRT.
But how about an alternative?
How about offering a "best effort" library-only ISO C++ wrapper to make WinRT usage as simple as possible without relying on library extensions? It doesn't have to be as clean and pretty…
118 votes -
assembler
Make inline asm in x64-bit projects.
103 votes -
98 votes
-
make header include refactoring possible
Would be great to have a tool which will automatically remove unused headers. I a big projects (more than 1^6 LOC ) this becomes really both code and compile-time issue over the time.
Another idea is to move from precompiled header those header files which are used only once and move those used more than once into precompiled header. Ideally those thresholds are configurable.
93 votes -
Decouple C++ compiler releases from Visual Studio releases
In VS2010 and subsequently in VS2010sp1, many features of C++11 was implemented. But it is still far from covering the full spec. And we can assume that the full spec will not be available even in VS2011(or v.next). Because, MS is polling developers for prioritizing certain features of C++11. May it will take some time to have a fully supported C++11 with VS. And that is true for almost all the C++ implementations. And probably, the C++ compiler supplied with VS v.next will not be usable with VS2010.
We can see, C++ compiler releases(full version or service packs) are coupled…
86 votes -
C++ compiler should warn about wrong member initialization order
Every few years this suggestion emerges and I think now is the time for next iteration.
In C++ the order of class/struct member initialization is determined by the order of member declaration and not by the order of their appearance in member initialization list. It is therefore extremely easy to to write a code that is very hard to find, e.g.:struct S {
int a;
int b;S( int i ) : b(i), a(b+1) {}
};int main()
{
S s(42);
}and we have garbage in s.a what might be not obvious for a novice programmer.
GCC issues…71 votes -
Add "decimal" support to the standard C++ library
Among the most challenging problems in a financial system is dealing with numeric precision.
Take this example for instance (using the double data type in C++):
We have a number 4.3599999999999994 which we withdraw the same negative number from (4.3599999999999977), we would then end up with the number 1.7763568394002505e-015. Hence, if we were testing if the number added up to 0, we would get "False", or "True" if we were testing if the number was greater than "0".This could easily get the system into an unwanted "IF" statement,
and tracking down these unwanted "IF" statements can be difficult.Since…
68 votes -
Automatic build numbering for c/c++ projects
It would be nice to have a feature for automatic build numbering of projects (C/C++) that use *.rc file for file numbering. Currently you need to do it manually by yourself or you need to use pre-build event and call some custom batch script. I think the second option is the most used by many projects. But i believe it would be very helpful to have some kind of standard way for this task in the Visual Studio.
65 votes -
62 votes
-
Nested namespace declarations
I suggest to extend syntax of nested namespace declarations and provide alternative way similar to one implemented in C#:
namespace Outer::Inner // declares nested namespace
{
struct Foo
{
};
}Outer::Inner::Foo foo;
That would be useful for codebases with high usage of nested namespaces especially with level of depth 3 or more.
57 votes -
Support C++11 range-based for-loop
Range-based for-loop http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2930.html
I have created as a separate idea to determine the priority of this feature from the rest of C++11 features
53 votes
- Don't see your idea?