Property | Value |
---|---|
Id | RCS1173 |
Category | Simplification |
Severity | Info |
if (x != null) // RCS1173
{
z = x;
}
else
{
z = y;
}
z = x ?? y;
(Generated with DotMarkdown)
Property | Value |
---|---|
Id | RCS1173 |
Category | Simplification |
Severity | Info |
if (x != null) // RCS1173
{
z = x;
}
else
{
z = y;
}
z = x ?? y;
(Generated with DotMarkdown)