Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 606 Bytes

RCS1123.md

File metadata and controls

46 lines (31 loc) · 606 Bytes

RCS1123: Add parentheses when necessary

Property Value
Id RCS1123
Category Readability
Severity Info

Examples

Code with Diagnostic

if (x || y && z) // RCS1123
{
}

Code with Fix

if (x || (y && z))
{
}

Code with Diagnostic

x?.y!.z

Code with Fix

(x?.y)!.z

See Also

(Generated with DotMarkdown)