Avoid short class names

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

Metadata

ID: csharp-code-style/short-class-name

Language: C#

Severity: Notice

Category: Code Style

Description

Do not use class names that are too short. Class names should be descriptive of the functionalities of the class.

Learn More

Non-Compliant Code Examples

interface I {
    void SampleMethod();
}
class A {

}

Compliant Code Examples

interface MyInterface {
    void SampleMethod();
}
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