I'm wondering if there is any shortcut in visual studio to generate automatic documentation for a method or class.
For example when I write a method:
public void MyFunction(int d)
{
}
I want generate the following structure:
/// <summary>
///
/// </summary>
/// <param name="d"></param>