This is a convention in .NET, so: ``` csharp interface Foo { } ``` Becomes: ``` csharp interface IFoo { } ``` When renaming the interface, all references have to be renamed as well and no code should break. Category: `Style` Diagnostic Id: `CC0062` Severity: `Info`
This is a convention in .NET, so:
Becomes:
When renaming the interface, all references have to be renamed as well and no code should break.
Category:
StyleDiagnostic Id:
CC0062Severity:
Info