Property | Value |
---|---|
Id | RCS1049 |
Category | Simplification |
Severity | Info |
bool f = false;
// ...
if (f == false) // RCS1049
{
}
if (f != true) // RCS1049
{
}
if (!f)
{
}
if (!f)
{
}
(Generated with DotMarkdown)
Property | Value |
---|---|
Id | RCS1049 |
Category | Simplification |
Severity | Info |
bool f = false;
// ...
if (f == false) // RCS1049
{
}
if (f != true) // RCS1049
{
}
if (!f)
{
}
if (!f)
{
}
(Generated with DotMarkdown)