Prevent empty default cases
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。
ID: csharp-best-practices/no-empty-default
Language: C#
Severity: Info
Category: Best Practices
Description
The default section of a switch should not be empty. If there is an error to raise, throw an exception, print a lock, and emit a metric.
Non-Compliant Code Examples
class MyClass {
public static bool filter(int target)
{
switch(target) {
case 1:
doSomething();
break;
default:
break;
}
}
}
Compliant Code Examples
class MyClass {
public static bool filter(int target)
{
switch(target) {
case 1:
doSomething();
break;
default:
doSomethingElse();
break;
}
}
}
Seamless integrations. Try Datadog Code Analysis