Remove Redundant Block Delimiters (C#, C++)
In This Article
Removes redundant block delimeters.
#Availability
Available from the context menu or via shortcuts:
- when the cursor is on a redundant opening or closing block delimeter.
#Examples
int res;
if (a)
│{
res = 1;
}
Result:
int res;
if (a)│res = 1;