---
title: Avoid short class names
description: Datadog, the leading service for cloud-scale monitoring.
breadcrumbs: >-
  Docs > Datadog Security > Code Security > Static Code Analysis (SAST) > SAST
  Rules > Avoid short class names
---

# Avoid short class names

{% callout %}
# Important note for users on the following Datadog sites: app.ddog-gov.com

{% alert level="danger" %}
This product is not supported for your selected [Datadog site](https://docs.datadoghq.com/getting_started/site.md). ().
{% /alert %}

{% /callout %}

## Metadata{% #metadata %}

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

**Language:** C#

**Severity:** Notice

**Category:** Code Style

## Description{% #description %}

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

#### Learn More{% #learn-more %}

- [C# Google Style Guide](https://google.github.io/styleguide/csharp-style.html)

## Non-Compliant Code Examples{% #non-compliant-code-examples %}

```csharp
interface I {
    void SampleMethod();
}
```

```csharp
class A {

}
```

## Compliant Code Examples{% #compliant-code-examples %}

```csharp
interface MyInterface {
    void SampleMethod();
}
```
  Seamless integrations. Try Datadog Code SecurityDatadog Code Security 
{% icon name="icon-external-link" /%}
 