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