how to simplify code documentation process - visual studio C#
Posted
by mack369
on Stack Overflow
See other posts from Stack Overflow
or by mack369
Published on 2010-03-25T12:35:25Z
Indexed on
2010/03/27
7:43 UTC
Read the original article
Hit count: 328
c#
|documentation
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>
© Stack Overflow or respective owner