Remove All Redundant Block Delimiters
Purpose
Used to remove redundant block delimiters throughout the method.
Availability
Available when the cursor is at the beginning of a method declaration.
Usage
Place the caret at the beginning of a method declaration.
Note
The blinking cursor shows the caret’s position at which the Code Formatter is available.
│static void Main(string[] args) { Console.Write("Even numbers:"); for (int i = 1; i <= 10; i++) { if (i % 2 == 0) { Console.Write($" {i}"); } } Console.ReadKey(); }
- Press the Ctrl + . or Ctrl + ~ shortcut to invoke the Code Actions menu.
- Select Remove All Redundant Block Delimiters from the menu.
After execution, the Code Formatter removes all redundant block delimiters in the method.
static void Main(string[] args) {
Console.Write("Even numbers:");
for (int i = 1; i <= 10; i++)
if (i % 2 == 0)
Console.Write($" {i}");
Console.ReadKey();
}
See Also