News:
1. Single Line Comments. Single line comments with // as shown below.
//This is an example for single line comment
2. Multi line comments. Multi line comments with /* */ as shown below.
/*This is a multiple line comment
We are in line 2
Last line of comment*/
3. XML Comments. XML comments with /// as shown below.
///This is an example for defining XML comments.