Do not assign a variable to itself

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-best-practices/no-self-assign

Language: C#

Severity: Notice

Category: Error Prone

Description

Do not assign a value to itself, it has no effect.

Non-Compliant Code Examples

class MyClass {
    public void myMethod()
    {
        var myValue1 = 2;
        myValue1 = myValue1;
    }
}

Compliant Code Examples

class MyClass {
    public void myMethod()
    {
        var myValue1 = 2;
        var myValue2 = 3;
        myValue1 = myValue2;
        myMethod2(myValue1, { myValue2 = myValue2 });
    }
}
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