Metadata

ID: csharp-inclusive/variable-assignment

Language: C#

Severity: Notice

Category: Best Practices

Description

Avoid using words such as blacklist, whitelist, slave or master in variable names. Consider using more inclusive wording in your code.

Non-Compliant Code Examples

class Student
{
    static void Main()
    {
        TestClass slaveVariable = new TestClass();

    }
}
class Student
{
    private int masterName;


}

Compliant Code Examples

class Student
{
    static void Main()
    {
        TestClass secondaryVariable = new TestClass();

    }
}