Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 677 Bytes

RCS1212.md

File metadata and controls

54 lines (37 loc) · 677 Bytes

RCS1212: Remove redundant assignment

Property Value
Id RCS1212
Category Redundancy
Severity Info

Examples

Code with Diagnostic

string x; // RCS1212
x = "";

Code with Fix

string x = "";

Code with Diagnostic

bool M()
{
    // ...

    x = false; // RCS1212
    return x;
}

Code with Fix

bool M()
{
    // ...

    return false;
}

See Also

(Generated with DotMarkdown)