Prevent catching NullReference

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

Metadata

ID: csharp-best-practices/catch-nullreference

Language: C#

Severity: Warning

Category: Best Practices

Description

Do not catch NullReferenceException. Instead, check directly if the value is null in your code.

Non-Compliant Code Examples

class MyClass {
    void myMethod()
    {
        try {

        }
        catch (NullReferenceException e) {

        }
        
    }
}
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