Prevent catching NullReference
This product is not supported for your selected
Datadog site. (
).
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、
お気軽にご連絡ください。
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) {
}
}
}
Compliant Code Examples
class MyClass {
void myMethod(object obj)
{
// Safe: check for null instead of catching exception
if (obj != null)
{
obj.DoSomething();
}
}
}
シームレスな統合。 Datadog Code Security をお試しください