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