Ensure objects are used

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

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