- Is there any other kind of documentation generator shortcuts for C# (like
///
Generatesfunction()
Code) or any tool item (like signature in email @ outlook) in VS IDE, For following MS Standard Coding & Documentation & making understand to other co-developer working on same project. - How to change the Format of the Generated document in visual stdio IDE by default comment format to custom comment format shown below.
Ex:
1. **Default Format**
// Name:
// Author:
// Description: <summary></summary>
// Parameters: <param name="abc"></praram>
// Returned Value: <returns></returns>
2. **New Custom Format**
// Application: <project></project> <version></version>
// Created Developer: <developer></developer>
// Created Date: <date></date>
// Last Modified:
// Last Modified Developer:
// Parameters: <param name="abc"></praram>
// Return Type: <returns></returns>
// Description: <summary></summary>