Check variable assignment language

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

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();

    }
}
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis