Metadata

ID: csharp-code-style/interface-first-letter

Language: C#

Severity: Notice

Category: Code Style

Description

The first letter of an interface should be I.

Learn More

Non-Compliant Code Examples

interface Service {
    void myMethod();
}

Compliant Code Examples

interface IService {
    void myMethod();
}