Google News
logo
C# - Interview Questions
What are the different types of comments in C#?
Below listed are the types of comments followed in C# :
 
a. Single line comments
 
// hello, this is a single line comment


b. Multiline comments
 
/* Hello this is a multiline comment
 last line of comment*/


c. XML comments
 
/// Hello this is XML comment
Advertisement