Property | Value |
---|---|
Id | RCS1218 |
Category | Readability |
Severity | Info |
if (x) // RCS1218
{
}
else
{
M();
}
if (!x)
{
M();
}
while (true)
{
if (x) // RCS1218
{
M();
}
else
{
break;
}
}
while (x)
{
M();
}
while (true)
{
if (x) // RCS1218
{
break;
}
M();
}
while (!x)
{
M();
}
do
{
M();
if (x) // RCS1218
{
break;
}
} while (true);
do
{
M();
} while (!x);
if (x)
{
do
{
M();
}
while (x);
while (x)
{
M();
}
(Generated with DotMarkdown)