Comments in C#

You can easily add comments within the structure of your C#. Comments are used to help document what a program does and what the code with it does. Keep the comments simple and direct . It is used for formal documentation for understanding particular code and its operation. There are three ways of commenting in C#.

  1. Single Line Comment
  2. MultiLine Comment
  3. XML documentation comment

Single Line Comment

The single line comment is specified using the symbol // Example

// This is a single line comment in C#.

MultiLine Comment

The Multiline comment can be specified using the symbol /* */ Example

/* This is an example of multiline comment in c#*/

XML documentation comment

This is a special kind of comment which is generally used for API documentation. The XML

documentation comment can be specified using the symbol /// Example

/// use to specify the XML comments in c#

Note - we can use Ctrl+K, Ctrl+C and Ctrl+K, Ctrl+U to Comment or Uncomment selected lines in C#.