Configure standard C document generators (XML comments) in Visual Studio

  • Are there any other documentation generator shortcuts for C # (e.g. ///Generates function()Code) or any tool element (e.g. @outlook email signature) in the VS IDE, for the next standard MS encoding and documentation and creating another co-developer to understand working on the same project.
  • How to change the format of the created document in the visual stdio IDE by default in the comment format below.

Example:

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

, XML , - VSdocman. (, ,...) . . " XML". , (HTML, CHM, docx, VS help,...) .

+1

This is now> 6 months old, but I think the answer to this question is: Change the default XML comment snippet in Visual Studio , you will get where you want to be, Just add your comment structure to the section CDATAand you are all set up.

0
source

All Articles