What are the types of comment in C# with examples?
Solution:
Single line//This is a Single line comment
Multiple line/*This is a multiple line commentHere you can use more than 1 line*/
XML Comments/// This is XML code Comment.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Solution:
Single line
//This is a Single line comment
Multiple line
/*This is a multiple line comment
Here you can use more than 1 line*/
XML Comments
need an explanation for this answer? contact us directly to get an explanation for this answer/// This is XML code Comment.