You are on page 1of 6

C#

3 Comments
What is C# Comments ?
 Comments can be used to explain C# code, and to make it more readable.
It can also be used to prevent execution when testing alternative code.
 Single-line Comments
• Single-line comments start with two forward slashes (//).
• Any text between // and the end of the line is ignored by C# (will not
be executed).
• Example
 Console.WriteLine("Hello World!"); // This is a comment
 Console.WriteLine("Hello World!"); // This is a comment
2
What is C# Comments ?
 Multi-line Comments
• Multi-line comments start with /* and ends with */.
• Any text between /* and */ will be ignored by C#.
• Example
/* The code below will print the words Hello World to the screen,
and it is amazing */
 Console.WriteLine("Hello World!");
 /* Console.WriteLine("Hello World");
 Console.WriteLine("Hello User"); */
3
thanks!

4
Extra graphics

5
SlidesCarnival icons are editable
shapes.

This means that you can:


● Resize them without losing
quality.
● Change fill color and
opacity.

Isn’t that nice? :)

Examples:

You might also like