views:

719

answers:

7

Is there anything I can't do in 2005 that I can do in 2008? Is 2005 obsolete?

A: 

The Surface SDK requires VS2008.

jeffamaphone
+1  A: 

2008 works much better with XAML, provides intellisense for LINQ, has improved designers for SQL CE, launches faster, and crashes less.

Bob King
+4  A: 

Visual Studio 2008 supports LINQ and multi-targetting - targetting different versions of the .NET framework. VS 2005 only works with .NET 2.0

Larry Watanabe
+2  A: 

VS2005 doesn't support C# 3.0 compiler and .net 3.5 BCL. Yes, it is obsolete.

Ihar Voitka
this answers all my questions quickly which is much better than just a few of them slowly - thanks!
shogun
A: 

The debugging features in 2008 are much improved. Besides having an immediate window (which we had in VB), you are also able to click on certain structures (like Data Tables) and view them in a grid format. These are called Debugger Visualizers and in fact you can even create your own. For example, if you have a collection of objects you can create a form which holds a grid or anything else that will help you visualize the data. Then during debugging you are able to pass your collection to this form to help you debug.

Tony D
A: 

If you do any web development, 2008 also includes a Javascript debugger (never had to use it myself, but when I attended the launch, judging by the crowd's reaction that was quite a big deal.)

MetalMikester
A: 

This explains many of the new features of 2008.

http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2008

One nice updates for me was the JavaScript Intellisense.

This link actually goes into way more detail

http://msdn.microsoft.com/en-us/library/bb386063.aspx

Bela