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: Difference between revisions

From Groundhog Learning
Updated via bot
 
(No difference)

Latest revision as of 15:51, 21 October 2025

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