Property | Value |
---|---|
Id | RR0189 |
Title | Invert if |
Syntax | if statement |
Span | if keyword |
Enabled by Default | ✓ |
if (condition1)
{
if (condition2)
{
Foo();
}
}
if (!condition1)
{
return;
}
if (!condition2)
{
return;
}
Foo();
if (!condition1)
{
return;
}
if (!condition2)
{
return;
}
Foo();
if (condition1)
{
if (condition2)
{
Foo();
}
}
(Generated with DotMarkdown)