Where can I find a Visual Studio plug-in that automatically generates documentation header for methods and properties?
Example the comment to a property could look like this:
/// <summary> /// Gets or sets the value of message /// </summary> public static string Message { get { return message; } set { message = value; } }
Ghostdoc from http://www.roland-weigelt.de/ghostdoc/