Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 194 Bytes

MA0084.md

File metadata and controls

13 lines (11 loc) · 194 Bytes

MA0084 - Local variables should not hide other symbols

class Test
{
    private string a;

    void A()
    {
        string a; // not-compliant as it hides the field
    }
}