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();
}