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
Revision as of 15:51, 21 October 2025 by Groundhog (talk | contribs) (Updated via bot)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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