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 variable开发者_运维技巧s.
GhostDoc does support XML comments for private variables. I use it all the time.
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.
精彩评论