vote up 3 vote down star
1

One thing Delphi does that is very useful is retaining multiple historical versions of modified files. This way I can easily make wholesale changes without checking code into repository every 10 minutes without fear that I can easily go back a step.

flag
show 2 more comments

38 Answers

1 2 next
vote up 0 vote down

Given an interface or parent class, I'd like to be able to see all other classes that implement/extend it - if I remember correctly, Eclipse can do this. "Find All References" kind of does this, but it often brings in other noise as well.

link|flag
vote up 0 vote down

I'd like to see first class support for dynamic languages like IronRuby and IronPython out of the box.

link|flag
vote up 0 vote down

In classic stack overflow fashion, my answer is combination of all the answers I think are best here so far, plus a little bit of extra input of my own (at the end):

  • Some love for good old C++. Better intellisense, refactoring etc. [unknown (yahoo)]
  • I would like to have Intellisense work for C# in the same way as it does for VB - ie. filtering the list down so that you only get everything beginning with the letters you have typed - makes it easier to find the property/method/event etc.. you are looking for. [Ebircsa]
  • I love the "Add References" dialog to come up near-instantly instead of the the eternity it seems to take. [danswain]
  • I'd like it if I could highlight a set of private variables, right click and refactor and all of the selected variables get encapsulated into properties. Right now only the first variable gets refactored. [Giovanni Galbo]
  • I'd like to be able to filter Intellisense by properties, events, methods etc (rather than all together). [Rob Sanders]
  • Intellisense for C++ that works at least 95% of the time (as opposed to the 60% or so at present). [Peter]
  • At least all the features of resharper included. [Victor Rodrigues]
  • I would like better support for comparing code, both from source control and two files which you specify. [Damien]
  • Smarter indentation of pasted code. [Hazar]
  • The ability to compile against more than one c-runtime library version (ie, support compiling against old runtime libraries much in the same way that you can now compile against different .NET versions in VS2008).
  • Remember my window layouts when I resize my VS screen. I have 2 monitors, and I often stretch the outer VS window to fill both monitors. I then size the VS components inside that window in a certain way so that they are partitioned to one monitor or the other. However, if you lock then unlock your screen, visual studio will slightly alter the size of some of these components. Not a lot, just enough to make the components bleed over onto the other screen by 100 pixels or so.
link|flag
vote up 0 vote down

I havn't tried the VS2010 beta yet but at the top of my wishlist

Responsiveness

  • Fast startup
  • Fast exit
  • Fast designer startup
  • Fast add refs dialog
link|flag
vote up 1 vote down

Get rid of the dataset designer.

link|flag
vote up 1 vote down

I would love to see easier ways to version your database. It might not be a function of VS2010 but it would be lovely to version your database as with the ruby on rails + rake commands (db:migrate). Now it is hard to effectivily share your database via SVN, had to take a look at diffent questions on this site to get the answer how to do it.

link|flag
vote up 0 vote down

Remove unused usings PROJECTWIDE.

link|flag
vote up 0 vote down

The feature I would most like to see is PERFORMANCE.

VS2008 takes upwards of 30 seconds to load on my core2-quad with 4gigs of ram. It then takes a minute or so to open a medium-sized project (15 or so csproj files) and isn't usable until the disk has finished thrashing about a minute later. It routinely uses upwards of 500 megs of RAM.

This is ridiculous!

link|flag
vote up 1 vote down

Cross platform support. (You know... Something other than Windows). (And before this gets modded down... Remember that Microsoft claims that .NET is language and platform independant).

link|flag
show 3 more comments
vote up 0 vote down

Templates available via the "find templates online" icon when creating a project. Maybe it's just me using 2008 express, but for kicks I've tried to see what other templates exist, and always get nada (had to create a windows service template myself).

link|flag
show 2 more comments
vote up 0 vote down

Higlight macthing parenthesis, brackets etc in red

foreach (var item in collection)
{
}

link|flag
show 1 more comment
vote up 0 vote down

Better JavaScript intellisense, particularly in separate JS files. Has anyone else noticed that when you're coding up a client script control that there is no intellisense for that control other than the methods above the current line of code?

I'd like to have the private memebers shown, would make getters and setters a lot easier to code up

link|flag
vote up 2 vote down

smarter indentation of pasted code

link|flag
vote up 2 vote down

Intellisense for C++ that works at least 95% of the time (as opposed to the 60% or so at present).

Compiler that runs faster than continental drift.

General performance and stability improvements. 2008 is better than 2005, but still needs work.

Ability to quickly swap between different window layouts. I tend to pop many of the windows out, but it likes to forget this sometimes, and it'd be nice to be able to snap them back in again easily.

link|flag
vote up 14 vote down

I love the "Add References" dialog to come up near-instantly instead of the the eternity it seems to take.

link|flag
show 1 more comment
vote up 1 vote down

I would like to see a super-fast "Find Type/Symbol/File" feature similar to ReSharper.

link|flag
vote up 1 vote down

I would like better support for comparing code, both from source control and two files which you specify. The tools are out there in many SVN clients but a inbuilt comparison and management right inside VS would rock

link|flag
vote up 1 vote down

Integration (or bundling) of Expression Blend. Let's face it: If you do WPF, you almost need Blend for a proper UI.

link|flag
vote up 1 vote down

API/command line/scripting support for version numbers so that we can manipulate those a lot easier during a build. Ability to use multiple sources to build the number.

For example, in a scheme of A.B.C.D, I want to have A and B fixed a.b until I manually change that, then get c somehow - but MSDev should provide one of a few auto increments for that, and d can possibly be obtained from a revision in source control.

EDIT: to make it easier to read:

Version = A.B.C.D where:

  • A is fixed in source file somewhere (manual editing)
  • B is fixed in source file somewhere (manual editing)
  • C can be auto incremented according to one of a few rule sets - and the developers can add schemes
  • D same as C but also able to get form another source - like the revision of SVN or some other place.

In general I want more flexibility and I don;t want to have to build all sorts of hacks to do manipulation of version numbering.

link|flag
vote up 0 vote down

Better integration with javascript ...

link|flag
vote up 0 vote down
  • Intellisense for SQL built-in
  • More refactorings (e.g., create similar member)
link|flag
vote up 1 vote down

At least all the features of resharper included. It is a shame that Visual Studio, a great tool, doesn't do much for developer productivity when coding. C# is becoming even more a language that considers these factors, but the environment is too much incomplete, miles away from the language potential to ease the job of programmers, let us focus on what is important.

link|flag
show 3 more comments
vote up 8 vote down

Some love for good old C++. Better intellisense, refactoring etc.

link|flag
show 3 more comments
vote up 0 vote down

Silverlight design support.

(And I don't need better historical file support the way I use Perforce / source control).

link|flag
vote up 3 vote down

I'd like to be able to filter Intellisense by properties, events, methods etc (rather than all together).

I'm not sure if this is feasible, but it would be a time saver especially when I'm looking only at events (for example).

link|flag
vote up 3 vote down

CommonLisp.net support

link|flag
show 2 more comments
vote up 5 vote down

I would like to have Intellisense work for C# in the same way as it does for VB - ie. filtering the list down so that you only get everything beginning with the letters you have typed - makes it easier to find the property/method/event etc.. you are looking for.

link|flag
show 3 more comments
vote up 7 vote down

Better unit testing support.

link|flag
vote up 1 vote down

FixBugs button?

Hehe. I guess svn/trac integration. Like that will happen.

link|flag
vote up 2 vote down

Good designers for WPF and Silverlight, more functionality that currently must be provided by (quite costly) third party tools like Resharper.

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.