Property | Value |
---|---|
Id | RR0120 |
Title | Convert ?: to if-else |
Syntax | ?: operator that is part of local declaration, assignment or (yield) return statement |
Enabled by Default | ✓ |
string s = (x) ? "a" : "b";
string s;
if (x)
{
s = "a";
}
else
{
s = "b";
}
string s = (x) ? "a" : (y) ? "b" : "c";
string s;
if (x)
{
s = "a";
}
else if (y)
{
s = "b";
}
else
{
s = "c";
}
(Generated with DotMarkdown)