开发者

Addin to add XML comments for private variable

开发者 https://www.devze.com 2023-01-09 03:11 出处:网络
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开发者_运维技巧

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消