I am wondering if there is a shortcut in visual studio to create automatic documentation for a method or class.
For example, when I write a method:
public void MyFunction(int d) { }
I want to create the following structure:
/// <summary> /// /// </summary> /// <param name="d"></param>
This is what happens when you type ///over a method signature.
///
You can also install and use a documentation tool like GhostDoc , which also adds some details to the documentation of the code that it generates.
GhostDoc . , . , , .
Take a look at my supplement, Atomineer Pro Documentation . It is similar to GhostDoc, but significantly more powerful and flexible.