MetaGuru
MetaGuru

Reputation: 43833

Major differences between Visual Studio Pro 2005 and 2008?

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

Upvotes: 1

Views: 3728

Answers (7)

Bela
Bela

Reputation: 3464

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

Upvotes: 0

MetalMikester
MetalMikester

Reputation: 1077

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.)

Upvotes: 0

Tony D
Tony D

Reputation: 1531

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.

Upvotes: 0

Ihar Voitka
Ihar Voitka

Reputation: 549

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

Upvotes: 2

Larry Watanabe
Larry Watanabe

Reputation: 10184

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

Upvotes: 4

Bob King
Bob King

Reputation: 25856

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

Upvotes: 1

i_am_jorf
i_am_jorf

Reputation: 54600

The Surface SDK requires VS2008.

Upvotes: 0

Related Questions