Property | Value |
---|---|
Id | RCS1104 |
Category | Simplification |
Severity | Info |
bool x = y ? true : false;
bool x = y;
bool x = y ? false : true;
bool x = !y;
bool x = y ? z : false;
bool x = y && z;
bool x = y ? true : z;
bool x = y || z;
roslynator.RCS1104.suppress_when_condition_is_inverted = true
(Generated with DotMarkdown)