views:

26

answers:

2

Just like Ghostdoc is there any add-in for Visual Studio 2008 that can automatically add XML comments for private variables, as Ghostdoc and few others doesn't support private variables.

A: 

GhostDoc does support XML comments for private variables. I use it all the time.

Reed Copsey
A: 

Ghostdoc supports private variables just fine. Ctrl-Shift-D creates

/// <summary>
///
/// </summary>
private readonly string attachmentName;

And you just fill in the blank within the summary with what that variable is for.

Jesse C. Slicer