// Single Line Comment
/*
Multiline
Comments
*/
// for single line comments
/* for multi line comments */
/// XML tags displayed in a code comment
//How to comment on C#
//Single Line
/*Multi
Line
Comment */
//Thats how you comment
//This Is A Comment
//Comments don't change what
//Happens in the code, but they
//Help you understand your own code,
//So you can make more changes.
//To make a comment, use a "//" then
//Whatever your comment is.
Single Line Comments ( // )
Multi Line Comments (/* */)
XML Comments ( /// )
// This is a single line comment
/* This is a multi-line comment
and continues until the end
of comment symbol is reached */
//your comment wont get notied by the computer
// Console.WriteLine("Comments are fun");