credit

The golden rule of code documentation:

Try to document why (code design decisions) and avoid what (code design descriptions).

To keep up with the increasing complexity of the project, it’s very important to document the coding decisions. It’s one of the best practices.

Visual studio provides some elegant ways for code documentation to keep the code understandable. It can also understand the changes that one make on hard code.

Single or multi line comments

These are necessary to describe functionality in little.

/*multiplelinecomments*/

Avoid them. It is advisable to avoid writing essays about code. The end product shall be code not their long descriptions.

Collapsible regions

Regions are collapsible. Just hover over the collapsed region and get a glance.

courtesy

Summary

courtesy

courtesy

Visual studio changes this section after change of the parameter name.

courtesy

A simple example:

/// <summary>/// Main class of the project/// </summary>class Program{        /// <summary>        /// Main entry point of the program        /// </summary>        /// <param name="args">Command line args</param>        static void Main(string[] args)        {            //Do stuff        }}