Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 532 Bytes

RCS1033.md

File metadata and controls

40 lines (28 loc) · 532 Bytes

RCS1033: Remove redundant boolean literal

Property Value
Id RCS1033
Category Redundancy
Severity Info

Example

Code with Diagnostic

if (f == true) // RCS1033
{
}

if (f != false) // RCS1033
{
}

Code with Fix

if (f)
{
}

if (f)
{
}

See Also

(Generated with DotMarkdown)