shortcut key for multi line comment in visual studio
xxxxxxxxxx
multi-line comment (/* */) (mac) (works in browser ides too)
shift + option + A
xxxxxxxxxx
********** For Mac **********
-> How to comment a block?
CMD + K + C
-> How to uncomment a block?
CMD + K + U
xxxxxxxxxx
Visual Studio (2009, not VSCode).
comment lines --> ctrl + K + C
uncomment lines --> ctrl + K + U
xxxxxxxxxx
To add a verbose comment, type /** and press Enter and VS Code will autocomplete it for you.