vote up 60 vote down star
27

Are there new features in Visual Studio 2010 that are must-haves? If so, which ones?

For me, the big draws for VS2008 as compared to VS2005 were LINQ, .NET Framework multitargeting, WCF (REST + Syndication), and general devenv.exe reliability. Granted, some of these features are framework things, and not tool things. For the purposes of this discussion, I'm willing to combine them into one bucket.

What is the list of must-have features for VS2010 versus VS2008? Are there any? I am particularly interested in C#.

Update: I know how to google, so I can get the official list from Microsoft. I guess what I really wanted was, the assessment from people using it, as to which things are really notable. Microsoft went on for 3 pages about 2008/3.5 features, and many people sort of boiled it down to LINQ, and a few other things. What is that short list for VS2010?

Summary so far, what people think is cool or compelling:

I read up on these at Zander's blog. He described these and other features. Nobody on this list said anything about:

  • Visual Studio engine

    • F# support
    • Javascript code-completion
    • JQuery is now included
    • UML
    • better Sharepoint capabilities
  • C++

    • moves to msbuild project files
flag

9  
It's made in WPF? So it will be pretty :) – PostMan May 20 at 2:59
31  
People still care about UML??? – Joseph May 20 at 20:40
Nobody here mentioned it as interesting, but Microsoft put it in VS2010 and mentioned it in their highlight reels. – Cheeso May 20 at 20:46
@Joseph - UML is still a great way of communicating on a page or two what would take dozens of pages documentation – annakata May 27 at 9:33
Any opinion on 2010 performance will be appreciate. – Sake Nov 13 at 8:25
show 2 more comments

29 Answers

vote up 54 vote down check

Much better support for multiple displays:

VS2010 Floating Windows Dual display screenshot on 22-inch widescreen + 17-inch display

link|flag
11  
I'm glad MS finally realized that almost all devs have at least 2 monitors. :) – Jon Tackabury May 21 at 18:51
@Mehrdad - can you post a link to the full size image? Or is that a screen shot from your machine? Is that like floating code windows that you can shuffle around over your various desktops? – BenAlabaster May 21 at 20:12
@balabaster: Yes, you have floating Windows that you can move around and maximize in the other display. That's my own screenshot, btw. I can add another one to demo floating Windows more obviously. – Mehrdad Afshari May 21 at 20:14
@Mehrdad - that would be great. I think this might perhaps be my favourite addition to VS! I can't count how many times I've complained that VS 2008 doesn't have this. This will allow me to keep all my ASPX files in one window and all their CS files in another which will allow me to reference each side by side without having to stretch my VS across my monitors – BenAlabaster May 21 at 20:16
3  
Man - I wish I could upvote this twice... – Erik Forbes May 21 at 20:20
show 7 more comments
vote up 26 vote down

Code Contracts. The fact that they're statically checked makes them 100x better than asserts and other argument guards to me.

The only thing is I wish C# 4 had a special syntax for it to hide the library calls.

link|flag
Deserves 100 upvotes. – Larsenal May 21 at 19:52
6  
Static checking is only available in the team system editions of Visual Studio right now, we all need to get onto Microsoft and make sure they include it in all editions. – Lee Treveil May 27 at 9:32
1  
Very good point, that's very unfortunate. Do we have an issue open somewhere? – Neil Williams May 27 at 14:20
Please excuse my cold hearted economic reasoning, but wouldnt petitioning Microsoft to include this feature in all versions just affirm the MS marketing team's decision to make this a premium feature? Perhaps a better idea would be to petition OSS folks to produce a plugin with Code Contracts. Its a pity there is practically no commercial competition to Visual Studio. – Alex Dec 9 at 2:33
I think this explains it better: cauldwell.net/patrick/blog/CodeContracts.aspx – Mark Dec 31 at 5:49
show 1 more comment
vote up 21 vote down

The support for parallel programming designed for multi-core systems is a big one for me!

-JFV

link|flag
oooh, now that sounds interesting. – Cheeso May 20 at 3:05
2  
yes, but you can get that in 2008, too – Igor Brejc May 20 at 20:15
1  
I understand there is also parallel debugging in VS2010, to go along with the parallel framework. I suppose the debugging piece is not available in VS2008. – Cheeso May 21 at 18:37
vote up 14 vote down

The new extensibility model is great. We should see a plethora of new, lighter-weight Visual Studio plugins with 2010.

Scott Guthrie demonstrates that in the PDC 2008 Keynote: http://channel9.msdn.com/pdc2008/KYN02/

link|flag
Haven't explored it yet, but it's about time the etension model was improved! – peterchen Oct 21 at 8:42
vote up 14 vote down

Support for at least some of the new C++0X features:

For me, the lambdas and r-value references are almost compelling enough on their own. The multi-monitor support is the other thing that I can see being the most useful.

link|flag
1  
"almost"? Those features are awesome! :) – jalf Jul 21 at 18:38
vote up 11 vote down

I like the optional and named parameters as well as the co/contra-variance stuff

http://channel9.msdn.com/posts/mike+ormond/C-40-New-Features-Optional-Parameters/ http://channel9.msdn.com/shows/Going+Deep/Inside-C-40-dynamic-type-optional-parameters-more-COM-friendly/

link|flag
1  
Did they really need a video to demo that feature which could have been summed up in one line of code? int Add(a,b=1){ ... which was a poor example, mind you. – Mark Dec 31 at 5:29
Oh.. and +1. I thought they had deliberately left this feature out before because it was harder for the compiler and easy enough to overload yourself or something?? Dunno why they had a change of heart, but I'm glad. – Mark Dec 31 at 5:30
There are still reasons to overload yourself. Such as if you want to use a calculated default value such as default DateTime? to DateTime.Now... but at least it makes the simple stuff easier. – Matthew Whited Dec 31 at 14:39
vote up 10 vote down

As a guy who does a lot of interop, I cannot wait for the "interop done right" features of 4.0. Here's a great talk on some of the new features from PDC.

link|flag
1  
+1: I do a lot of interop as well, and it's a mess right now. – Jon Tackabury May 21 at 18:50
vote up 7 vote down

Jason Zander, the Visual Studio Developer Division General Manager, has a blog. You should read it... (There are many changes to how projects are handled, to the editor, and to various language-specific features in both - whether these make it a compelling upgrade for you... is something only you can answer)

link|flag
vote up 5 vote down

Visual Basic Collection and Array Literals.

They are super awesome.

(disclaimer: I wrote that feature, so I'm a little biased)

link|flag
1  
@Scott: maybe add a quick example of the syntax. – John Saunders Feb 20 at 1:51
vote up 5 vote down

General

  • Supposed to finally get an XML Schema designer back (lost it in 2008 from 2005)

VB

line continuation is my #1 reason to upgrade, since we use VB 75% here.

link|flag
1  
Yay removal of line continuation characters! Took 'em how long? – MiseryIndex May 21 at 17:43
since vb1, i'd guess :) the post about it details some of the reasons it is difficult for the compiler... but thats the side effect of not having a "statement end" character :) – Andrew Backer May 21 at 20:08
vote up 4 vote down

I kept hearing about a "black box" debugging (or historical debugging) that would be included in 2010 version. That's what i'm interested in. Is it there?

link|flag
It's only included in the overly expensive Team Suite editions, as far as I know. :( – Jon Tackabury May 21 at 18:52
There is no "Team Suite" edition anymore, it confused people too much... you mean "Ultimate" probably – Peter Gfader Feb 24 at 0:50
"black box" debugging (or historical debugging) is going back in time in a debugging session (not in the stacktrace!). Like watching a movie and rewinding back to see what happened (caused an exception) Checkout slide 61 here slideshare.net/PeterGfader/… – Peter Gfader Feb 24 at 0:54
vote up 4 vote down
  • WPF Designer is up to par with the WinForms designer in VS2010. The WPF designer in VS2008 is average at best.
  • ASP.NET MVC baked in
  • Ability to write rich extensions to the Visual Studio env using MEF - I think this opens the door to an even richer set of VS extensions (and easier path for internal type extensions instead of waiting for a vendor to provide on)
link|flag
Better intergration between ASP.Net, ASP.Net MVC, and DynamicData will be great. – Matthew Whited Dec 31 at 14:52
how does the wpf designer compare to Expression Blend? – Jimmy Feb 24 at 1:12
vote up 4 vote down

Newly implemented C++ intellisense.

I played with it a little and it looks much better than VS2008 and it can only improve until the release.

link|flag
I'm not sure why you say 'newly implemented,' I'm getting intellisense on my C++ code with VS2008 here. – Sukasa May 28 at 21:47
4  
it's a known fact that VS03/05/08 intellisense is broken (and that's an understatement). if you want info on the "new" intellisense, read this: blogs.msdn.com/vcblog/archive/2009/05/27/… – Idan K May 29 at 9:20
vote up 4 vote down

F# is definitely something to watch (and explore) in VS2010. It's going to be a paradigm shift for many OOP (Object Oriented Programming) programmers, in much the same way that OOP was a paradigm shift for the people steeped in the "structured programming" approaches of the 1980s and '90s.

The draw for F# will be much the same that OOP had over "structured programming": do more with less code while making your code more stable at the same time.

link|flag
vote up 3 vote down

For me it is the new features that ship with the tester edition and TFS 2010, such as the new automated testing tools.

link|flag
+1 Test manager is awesome to record your manual tests and replay them! Web, WPF, Winforms and Silverlight (RTM) – Peter Gfader Feb 24 at 1:07
vote up 3 vote down

While the new features of C# may not seem as impressive compared to LINQ - variance is really nice and useful.

The library and runtime has a lot of new features. Personally I find the parallel library to be the most interesting. The demos and code I have seen so far are really impressive and the added debugging support in VS2010 for tasks etc. makes for a nice package.

The VS extensibility model has been changed as well and it allows for some pretty cool features and it seems much more accessible than the current model.

link|flag
vote up 3 vote down

I would upgrade because of the new web application deployment features.

link|flag
vote up 2 vote down

MSVC 2010 is getting rid of the side-by-side configuration model and going back to where you can just distribute the runtime dlls alongside the exe. I am pretty excited about that.

link|flag
What does this mean? Can you elaborate? – Cheeso Jul 23 at 11:41
1  
It has to do with how c/c++ applications are distributed on Windows. With MSVC 2005 Microsoft implemented a system called side-by-side configuration. Before 2005 you could just distribute the MSVC runtime dlls alongside your program and everything would just work. With side-by-side configuration it was not so easy, and it caused headaches for many people who couldn't understand the intracacies of the new system (myself included). But with 2010 they've gone back to the old model, and it works great! – JimDaniel Jul 23 at 14:16
If I understand what you're talking about, in VC2005 or 2008, wasn't it recommended, as per this: blogs.msdn.com/vcblog/archive/2008/05/15/… to package the VCRT MSM's in with the application MSI? I think the problem they were trying solve was servicing deployed MSVC runtimes: how to patch them? I will be surprised if MS reverses that decision. Can you post a citation or link? – Cheeso Jul 24 at 4:57
blogs.msdn.com/vcblog/archive/2008/10/28/… From the last bullet in the first set of bullets, starting with Deployment: "New deployment model for Visual C++ Libraries (changed to not use Windows SxS configuration)" – JimDaniel Jul 24 at 13:05
Interesting; thanks. – hapalibashi Oct 27 at 12:43
vote up 2 vote down

VS 2010 Has lot of feature for improving productivity, (From ScottGu's blog)

General

link|flag
vote up 1 vote down

I like it that Silverlight 3 is in the box (runtime, SDK, tools), you don't have to install anything extra.

Call Hierarchy feature is quite nice too ;)

I also like Generate From Usage, Highlight References, Navigate To.

link|flag
vote up 1 vote down

Unit testing and visual designer for Silverlight. That's what made me to take the decision of installing beta 2, even though generally I don't like to rely too much in betas.

link|flag
vote up 0 vote down

Being stuck using VB.NET, I'm so happy to see automatic properties and inline subs.

link|flag
vote up 0 vote down
  • Better Workflow Foundation tooling and design
  • WS-Discovery Support in WCF
link|flag
vote up 0 vote down

Following beta 2 announcements and release, many things to ponder.

Visual Studio product line is completely revamped. 3 SKUs (excluding express editions): Professional, Premium, and Ultimate. Premium includes many features that used to be team system edition features. Ultimate is where the "new" team system features will go, such as UML.

Premium VS will come with the Premium subscription. Slight price increase from the old Professional VS + Premium subscription.

All VS subscriptions will have TFS, which will now run on client systems (Win 7 and Vista)! If you're looking for a compelling reason to upgrade, TFS may be enough all by itself.

link|flag
vote up 0 vote down

Built-in project templates for SharePoint 2010 features, webparts and solutions. One-click deployment to SharePoint 2010

Combined with the fact that it is possible to install SharePoint 2010 on a developer Vista/Windows 7 environment this will greatly speed up SharePoint development

link|flag
vote up 0 vote down

Note that Visual Studio 2010, with its WPF rewrite, dropped the MDI option for documents. Tabs are the only way now, barring some macro magic.

This is the only big regression in functionality I've noticed yet.

link|flag
1  
Lack of MDI is a regression? My car lacks a hand-crank on the front to start the engine, but I find I don't miss it much... – Joel Mueller Feb 18 at 22:49
Gotta love car analogies. :) – Scott Bilas Feb 18 at 23:40
vote up 0 vote down

Auto-Start for web applications - the ability to automatically startup and proactively initialize a web application without having to wait for an external client to hit the web server.

Box select / Multi-line editing - Allows you edit multiple lines of code at once.

link|flag
vote up 0 vote down

I'd be interested in hearing what you think about the code visualization and exploration tools in Visual Studio 2010 Ultimate such as creating sequence, dependency graphs, and layer diagrams from code and using Architecture Explorer to browse and explore your solution. VS 2010 also supports UML class, sequence, component, use case, and activity diagrams for software design. You'll also be able to link UML diagrams to Team Foundation work items and extend your UML models.

I've posted more links on my profile for more info.

link|flag
vote up 0 vote down

IntelliTrace (called "historical debugging")
--> Going back in time during a debugging session.

Not to confound with the Stacktrace.
--> Going back in the call hierarchy.

IntelliTrace: Like watching a movie and rewinding back to see what happened (what caused an exception)

MSDN info here
http://msdn.microsoft.com/en-us/library/dd264915(VS.100).aspx

Personal plug: Checkout slide 61 here
http://www.slideshare.net/PeterGfader/testing-with-vs2010-a-bugs-life

link|flag

Your Answer

Get an OpenID
or
never shown

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