Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Write a Comment

From Groundhog Learning

Writing a comment in the code.

Write a Comment in C#

Single-line comment in C#

💻 C#

// This is a comment

⚠️ All text in the same line will be commented out.



Multi-line comment in C#

💻 C#

/*
  This is a comment
  that spans multiple lines
*/

⚠️ Do not forget to close the comment, otherwise the entire file is commented.

Related Concepts