Skip to content

Convert abstract class to interface #506

@giggio

Description

@giggio

This:

abstract class Foo
{
    abstract void Bar();
}

Becomes:

interface Foo
{
    void Bar();
}

Can only be offered if abstract class has no implemented method.

Category: Refactoring
Id: CC0101
Severity: Hidden

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions