Terminology
Term | Definition |
---|---|
Single Line Comments | When commenting on code in C# use // . This allows you to comment out one line in VSCode. |
Multi-Line Comments | When commenting on code in C# use /* at the beginning of the comment and */ at the end. This allows you to comment out multiple lines in VSCode. |
Shortcut for Commenting Mac | When your cursor is on a line in VSCode if you press CMD + / it will comment that line out. If you highlight multiple lines it will comment out multiple lines. |
Shortcut for Commenting Windows | When your cursor is on a line in VSCode if you press CTRL + / it will comment that line out. If you highlight multiple lines it will comment out multiple lines. |