Comments in C#
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSULYZmP776Vo2NIncx0evLc3tHojEMS3iR9p28IvmYxjlMSuh4BwPYMEQCcpGD7glz50FwIUb4huYW3nI1JjWNtKzoGEEJj9w-FoCccRfzqgmsvfSUQ3JAvVJBPK4_4ZHztreTuDyiOiS/w563-h276/image.png)
Please find below points Play a very important role in maintenance of program. Increased the readability and understanding of the code. Two type of comments 1. Single Line Comment (//) 2. Multiline Comment (/* */) Example : 1. Single Line Comment (//) It is used the special characters "//" and comment only the single line. In the below example only one line is commented. 2. Multi line Comment (/**/) It is used the special characters "/*.....*/" and comment only the multiple line. In the below example only one line is commented.