Reporter | Andrey Simukov (Andrey.Simukov) |
---|---|
Created | Apr 12, 2018 5:04:20 PM |
Updated | Apr 16, 2018 5:20:12 PM |
Subsystem | Quick Fixes |
Assignee | Alexander Shvedov (shvedov) |
Priority | Normal |
State | Open |
Type | Bug |
Fix version | No Fix versions |
Affected versions | 2017.3.5, 2018.1 |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
bool test = true;
if (test!=false /*comment*/ && 1==1)
{
//...etc...
}
Place a caret at
test!=false
or 1==1
or &&
, choose any of the suggestions, for exampleRemove expression for
1==1
Replace expression with 'true' for all the expression
The commentary is removed.