Structure of Comments in C# .NET

In every programming language there is a facility to keep comments. The structure of comments in C# .NET is same as C/C++ or java. It supports the four types of comments as following:

// Single line
/* Multiple
    line  */
/// XML comments on single line
/** XML comments on multiple lines */

Add a Comment