How to simplify the process of documenting code - visual studio C #

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>
+5
source share
3 answers

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.

+11
source

GhostDoc . , . , , .

+4

Take a look at my supplement, Atomineer Pro Documentation . It is similar to GhostDoc, but significantly more powerful and flexible.

+1
source

All Articles