Avoid short class names

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

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