Ensure objects are used

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: csharp-best-practices/objects-ensure-use

Language: C#

Severity: Info

Category: Best Practices

Description

Creating an object and then not using it can lead to unexpected behavior if the constructor contains side effects.

If the code intentionally creates and drops an object to trigger the constructor side effects, consider moving them to a separate function and call it directly.

Non-Compliant Code Examples

class MyClass {
    public void myMethod()
    {
        new MyClass();
    }
}

Compliant Code Examples

class MyClass {
    public void myMethod()
    {
        var obj = new MyClass();
    }
}
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