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
-
SFTP Support
I think it's about time that .NET supports SFTP natively. It's a majorly supported FTP protocol and questions from customers are frequent about this feature.
3 votes -
Offer a better API for loading assemblies and instantiating types in AppDomains
Right now, when you are trying to load code in a different AppDomain, you have very few options on how this happens. You call CreateInstance and hope that fusion can find your assemblies (tricky when using a different app base), that the assemblies are loaded in the correct context (you're out of luck when mixing Load and LoadFrom, and who knows what CreateInstance is doing), etc etc.
It would be great if there was a framework type specifically designed to be created in the new AppDomain that you could use to control the process better. Being in the framework, it…
3 votes -
SortedList.Add should check whether the item is to be inserted at the end before doing a binary search
The recommended usage of SortedList (both generic and non-generic) is to add items in sorted order so items don't have to be moved about in the internal arrays
Currently, the Add method always does an O(log n) binary search to determine where in the arrays the item should be added. It would be better if an explicit check was done before searching to check whether the added item is to be inserted at the end of the arrays (as it would be most of the time, if it's being used correctly), rather than doing a costly binary search to find…
3 votes -
Integrated .Net Obfuscation for Mobile & Modern (Windows Phone & Windows Store) Apps & Games
*** Visual Studio 2012 absolutely needs to have an integrated .Net obfuscation feature that works on Windows Store and Windows Phone Store apps & games. ***
The Dotfuscator tool that's integrated into Visual Studio 2012 cannot be used to obfuscate Windows Store or Windows Phone Store apps, making it fairly useless to "modern app" developers who are targeting Windows 8, Windows RT, and/or Windows Phone 8.
On April 30, 2013, PreEmptive (the vendor of Dotfuscator) expired the license of the free (and separately downloadable) "Dotfuscator for Windows Phone 7" tool. PreEmptive now charges $500/year or $150/quarter to use another version…
3 votes -
Zero Length Arrays Caching
In the .net framework, they are at least two instances where zero length arrays are cached.
One at System.Collections.Generic.List<T>._emptyArray (mscorlib) and one at System.Linq.EmptyEnumerable<TElement>.instance (System.Core). They are maybe more but that's what I found.I wish it existed some kind class in mscorlib that implemented this once and be publicly accessible.
Now I have to implement my own caching a third time, since none of the above are public.PS. I know that I can cast System.Linq.Enumerable.Empty<TResult>() to TResult[] but I find it, a bit risky.
3 votes -
internally handle invokerequired
I see a lot of references in the blogsphere to the following page..
http://msdn.microsoft.com/en-us/library/ms171728.aspxIf Me.textBox1.InvokeRequired Then
Dim d As New SetTextCallback(AddressOf SetText)
Me.Invoke(d, New Object() {[text]})
Else
Me.textBox1.Text = [text]
End If-----
we then build software with gobs of extra code to do this dance around invoke. is there no way to push these "if invokerequired" steps behind the scene so we instead code more simply:
InvokeAsNecessary.Me.textBox1.Text = [text]
3 votes -
Enhance .NET and COM with New Generic Programming Features
1. Enhance CLI/CLR metadata for both templates and generics, including variadic.
2. Enhance CLI/CLR metadata for both the partial and full specialization of templates and generics.
3. Enhance CLI/CLR metadata for enhanced expressiveness with regard to template and generic parameter constraints. For example, Expression<Func<Type, bool>>[] GetGenericParameterConstraints().
4. Enhance type, method and extension method resolution and inference heuristics for compile-time, runtime and dynamic language scenarios.
5. Facilitate static interfaces or static interface methods as well as their use in generic parameter constraints and generic method implementations, e.g. T parsed = T.Parse(...).
6. Enhance the structure of builtin datatypes for generic programming.
…
3 votes -
Improve exception messages
Many exceptions in .NET still do not contain any context information which makes it hard to understand when some exceptions happens.
For instance, when a key is already added to a dictionary you throw with the message
"An item with the same key has already been added."
that message does indeed tell what's wrong. But it doesn't aid in bug fixing since we do not know in which context it happened. If you instead added information about the item which failed it would help tremendously.
"An item with the key 'XXXX' has already been added."
What I'm basically asking is…
3 votes -
Version **** Resolution Center
Give us some help to resolve those AWFUL AWFUL problems when some dependency down the chain is referencing an out-dated .DLL - in fact, the whole references and version situation is atrocious.
3 votes -
Add GetHttpRouteUrl to System.Web.UI.Page
HttpRouteUrl was added to System.Web.Mvc.UrlHelper to access HttpRoutes in MVC but no method was added for Web Forms.
Control has the GetRouteUrl method but this doesn't recognise HttpRoutes (just like UrlHelper.RouteUrl).
This is a suggestion to add a GetHttpRouteUrl method to Control which would be the analog of UrlHelper.HttpRoute.
3 votes -
3 votes
-
3 votes
-
SmtpClient should allow to specify the envelope sender to support a return path for VERP
Implement an optional envelope sender address used for the MAIL FROM command.
This is needed, because the address in the MAIL FROM command is used for bounce messages.
This will also result in an different return path header.Read more on "Variable envelope return path" here: http://en.wikipedia.org/wiki/Variable_envelope_return_path
please see also this similar feature request: http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/2180497-smtpclient-should-allow-a-null-mail-from-in-the-sm
3 votes -
Don't add features until they are done: Code Contracts
I'm shocked and appalled. The Code Contacts feature is listed as a new feature with a supported namespace in the framework. However, to get them to work correctly one has to download an EXPERIMENTAL runtime dll from research!
Clearly this is a feature that was not done when the product shipped but MS shipped with it anyway.....a very bad practice.
3 votes -
3 votes
-
Strong Visual C++ focus in future releases
Visual C++ should be given way more attention and real developers, who know and understand it, won't be forgetting about C++ for a long long time. VC++ needs to support WPF & WCF, support writing web applications with Visual C++ code-behind and support the Data & DataSource support the VB.NET and C# have thoughout the life-cycle of VS.
Additionally Visual C++ needs InteliSense enabled when working with /CLR not just native based work! Truly, this is atrocious in its current state. C++ should always be kept on the forefront, because it will always be the best, until C# re-writes and…3 votes -
Support expressions for ObsoleteAttribute similar to DebuggerDisplayAttribute
Support expressions for ObsoleteAttribute similar to DebuggerDisplayAttribute so that we could make the warning dynamic to the code that is being marked obsolete. Mainly I would like to use this in combination with the awesome hack that Pablo Fernandez came up with on StackOverflow to produce Custom Compiler Warnings.
http://stackoverflow.com/questions/154109/custom-compiler-warnings
Of course just adding a new attribute for producing custom compiler warnings would be great too. Having the warnings able to have a category attached to them would be the icing on the cake.
3 votes -
Allow a garbage collector secure mode
Make an option that will have the garbage collector (GC) when moving/freeing up memory clears out the memory location with a string of 0s, 1s, or random bits to remove the contents from memory.
Another option would be to have a SecureObject attribute that would tell the GC that this object needs its contents cleared in memory when collecting/moving it.
This would help out with the processing of sensitive information, especially when working with immutable strings.
I do understand that these options would produce a performance hit, but this would not be the default action of the garbage collector and…
3 votes -
access rdlc object dynamically
I hope you must have the idea of accessing the crystal report objects. A small example:
CrystalDecisions.CrystalReports.Engine.ReportDocument oRpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
oRpt.ReportDefinition.ReportObjects[0].Width = 10;
You can access any of the objects and change some of its properties. This is very useful! We recently shifted from Crystal reports to rdlc. But due to lack of this property we had to design 9 & 4 reports, for two reports respectively. Kindly look into this. I hope this will be very useful for the future developers.
3 votes -
New ArraySegment, An ArraySegmentRelative
I find it very useful arraySegment, but I need a class "sister" to extend its usefulness. It allows me to use an array without copying data.
The current Absolute ArraySegment:
it's Aboslute. If Array have 20 items, If offset it's 5 and count it's 10, Still I have to tell you the absolute pointer when working with him.
To indicate the element 7, I have to write Myas(7).The proposing Relative (new) ArraySegment:
When I point to the 7th element in the array and since the ArraySegment, Offset was 5, I should indicate this Myas (2) not as Myas (7).…
3 votes
- Don't see your idea?