Coding in VB.NET with VS 2008

Today will post about two things. One is hot fix available for VB performance issue in VS2008. It addresses performance issues in the following scenarios:

– The IDE takes a long time to build/rebuild the solution.

– You experience a slow response time when you press F5 to start debugging.

– You experience a slow response time in the Code Editor.

– You experience a slow response time in IntelliSense.

The performance issue is caused by having large files in your project that contain XML documentation. You’re most likely to run into these large files when using designer-generated files for web references and/or datasets. If you’ve found that turning off the option under the Compile tab in project properties for “Generate XML Documentation File” improves your performance, then this hotfix should address your issue.

Download it here.

The other is this useful tool called GhostDoc which enables you to generate XML description of your functions in VS 2008. I use this when coding in VB.NET though the VB.NET support is still experimental. This free add-in uses customizable templates to generate consistent, English-readable documentation based on the current context. To use it, right-click (or use CTRL + SHIFT + D) to document the current element:

tool Coding in VB.NET with VS 2008

This generates the following documentation (note GhostDoc split the property name into words and created a sentence from it):

tool2 Coding in VB.NET with VS 2008

Download GhostDoc from here.

Related posts:

  1. VS 2008 Web Development Hot-Fix Available
  2. VS 2008 and .NET 3.5 Beta 2 Released
  3. Visual Studio 2008 and .NET 3.5 Released

  1. does anyone knows if there is any other information about this subject in other languages?

Leave a Comment


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">

Read previous post:
Most used development IDE is VS 2008!

Since 10th of February we started poll which aimed to determine what is your favorite development IDE. So after month...

Close