Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 833 Bytes

RR0195.md

File metadata and controls

49 lines (37 loc) · 833 Bytes

Add member to interface

Property Value
Id RR0195
Title Add member to interface
Syntax method, property, indexer, event
Span identifier
Enabled by Default

Usage

Before

public class Foo : IFoo
{
    public void Bar()
    {
    }
}

public interface IFoo
{
}

After

public class Foo : IFoo
{
    public void Bar()
    {
    }
}

public interface IFoo
{
    void Bar();
}

See Also

(Generated with DotMarkdown)