More actions
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
- Creates: Comment