JetBrains Rider 2017.2 Help

Commenting and Uncommenting Code

Code | Comment With Line/Block Comment
Ctrl+Alt+/ / Ctrl+Shift+/

With JetBrains Rider, a single keystroke is enough to comment or uncomment code.

Commenting and uncommenting with line comments

To comment or uncomment code with line comment, press Ctrl+Alt+/ or choose Code | Comment with Line Comment in the main menu

// Commented line in C# ...

If there is no selection, JetBrains Rider will comment the current line, or uncomment if the line is commented, and moves the caret to the next line.

If there is a selection, JetBrains Rider will comment or uncomment all the lines that the selection spans. Even if a line is partly selected, the comment mark is inserted in the beginning of this line.

An alternative way to uncomment any line comment is to set the caret on this line, press Alt+Enter and choose Uncomment.

Commenting and uncommenting with block comments

To comment or uncomment code with block comment, press Ctrl+Shift+/ or choose Code | Comment with Block Comment in the main menu

/* Commented code block in C# ... */

If there is no selection, JetBrains Rider will create an empty block comment at the first whitespace that follows the current caret position.
If the caret is within a block comment, the block is uncommented.

If there is a selection, JetBrains Rider will add block comment marks in the beginning and in the end of the selection. The caret is moved to the end of the block comment.

An alternative way to comment any block of code is to select it, press Alt+Enter and choose Comment selection. The same way works for uncommenting code inside a block comment - set the caret anywhere in the block comment, press Alt+Enter and choose Uncomment.

Last modified: 27 December 2017