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

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