自动添加.Net代码注释

Ger*_*orm 1 plugins commenting visual-studio

在哪里可以找到自动为方法和属性生成文档标题的Visual Studio插件?

示例对属性的注释可能如下所示:

/// <summary>
/// Gets or sets the value of message
/// </summary>
public static string Message        
{
   get
   {
       return message;
   }

   set
   {
       message = value;
   }
}
Run Code Online (Sandbox Code Playgroud)