Property | Value |
---|---|
Id | RCS1123 |
Category | Readability |
Severity | Info |
if (x || y && z) // RCS1123
{
}
if (x || (y && z))
{
}
x?.y!.z
(x?.y)!.z
(Generated with DotMarkdown)
Property | Value |
---|---|
Id | RCS1123 |
Category | Readability |
Severity | Info |
if (x || y && z) // RCS1123
{
}
if (x || (y && z))
{
}
x?.y!.z
(x?.y)!.z
(Generated with DotMarkdown)