RobS
RobS

Reputation: 9422

Best feature(s) in Visual Studio 2008 (and VSTS)?

Visual Studio has certainly gone from strength to strength since humble Visual Studio 6 (and previous renditions). There seems to be a lot more coming in Visual Studio 2010 (based on blogs, the PDC and the more recent CTP virtual machines).

The recent Service Pack 1 seemed to introduce some really intriguing new functionality and enhancements.

As it stands today, i.e. in Visual Studio 2008 (SP 1), what do you think is the most outstanding, couldn't-live-without-it feature in Visual Studio (including the Team Suite Editions)? Is it something you use daily?

Alternatively, what features in Visual Studio 2008 could really use an upgrade/makeover/bugfix?

Upvotes: 0

Views: 553

Answers (13)

MRFerocius
MRFerocius

Reputation: 5629

IntelliSense is the best out there. Compare IntelliSense with JavaDocs, there you will see how good is that.

Best Regards!

Upvotes: 0

Tom E
Tom E

Reputation: 2482

The Load Test agent in VSTS Test Edition is great.

Upvotes: 0

Bratch
Bratch

Reputation: 4223

Split view, in addition to design and source view. I think VS 2008 is the first version with this feature, which allows you to see design and source horizontally split. And if you have two monitors (don't we all) you can split it vertically and have one screen for source and one for design. Many other HTML editors have had this feature for years.

Occasionally when I change focus from source to design view it messes up a small portion of my HTML and I haven't figured out why yet. It makes me spend more time looking at my pages before uploading them.

Upvotes: 0

Jobi Joy
Jobi Joy

Reputation: 50048

As far as VSTS concerns I like the bellow items.

  • Work Items/Bug Tracking
  • Agile Process support
  • Code Analysis and Check-in policies
  • Bug/Workitem associated check-ins

Upvotes: 0

Shawn
Shawn

Reputation: 19823

If you right click a tab and hit open containing folder it opens the folder in Explorer and selects the file.

Upvotes: 0

Enes
Enes

Reputation: 3961

  • Refactoring
  • Intellisense
  • Automatic formatting
  • Shortcuts:
    • CTRL + .
    • CTRL + ALT + P
    • F10 , F11
    • ALT + Enter
    • CTRL + K + C
    • CTRL + K + U
  • Debbugging Features:
    • Break before exception throws
    • Immediate window
    • watch windows
  • Unit testing
  • Find in files
  • Profiling
  • Modules window

Upvotes: 0

Cory Foy
Cory Foy

Reputation: 7222

  • Unit Testing. Though I would use xUnit.NET or NUnit, the fact that it is in the Pro product is a big deal
  • Cyclomatic Complexity. Really a lot of the code analysis features are really interesting
  • Profiling - being able to see things like how much time your objects spend in the various generations can be very helpful
  • DBPro is awesome. I only wish it worked on things other than SQL Server
  • Performance Wizard.
  • Refactoring. As someone else pointed out it doesn't beat things like Resharper, but still it's better.

Upvotes: 2

Cadoo
Cadoo

Reputation: 825

The blue guidelines that help you line up your controls in design view.

Not supporting .net 1.1, unfortunately this is needed where I work. Going back to Visual Studio 2003 is painful.

Upvotes: 0

Tom Smykowski
Tom Smykowski

Reputation: 26129

For me the best thing in VS 2008 is that such tools like VS.PHP can be build upon that. So that you can write a PHP website inside VS with all this goodies like intellisense an so on.

And the worst feature is DataSet designer that is "by design" full of bugs and other filthy stuff. It's just a pain in the ass to use it. So - I don't recommend DataSet Designer.

Upvotes: 0

Rob Prouse
Rob Prouse

Reputation: 22657

Most everything that has been posted so far has been in Visual Studio for a fair time now. My favorite new feature is;

Refactoring

The best features though aren't even in Visual Studio, the best are in Resharper!

Upvotes: 2

dr. evil
dr. evil

Reputation: 27285

  • Intellisense
  • Watch Windows
  • Threads Window (doesn't available on express editions)
  • Immed (to test stuff on the fly)
  • Conditional Debugging (doesn't available on express editions)
  • Go to Definition / Find Usages
  • Extensibility

Upvotes: 1

GWLlosa
GWLlosa

Reputation: 24443

Intellisense.

Edit-And-Continue.

Immediate Window.

Watch windows.

The ability to drag the little yellow 'next instruction' arrow to an arbitrary position for the 'next' instruction.

Upvotes: 1

Paul
Paul

Reputation: 3163

IntelliSense

Upvotes: 4

Related Questions