This: ``` csharp abstract class Foo { abstract void Bar(); } ``` Becomes: ``` csharp interface Foo { void Bar(); } ``` Can only be offered if abstract class has no implemented method. Category: Refactoring Id: CC0101 Severity: Hidden
This:
Becomes:
Can only be offered if abstract class has no implemented method.
Category: Refactoring
Id: CC0101
Severity: Hidden