Property | Value |
---|---|
Id | RR0195 |
Title | Add member to interface |
Syntax | method, property, indexer, event |
Span | identifier |
Enabled by Default | ✓ |
public class Foo : IFoo
{
public void Bar()
{
}
}
public interface IFoo
{
}
public class Foo : IFoo
{
public void Bar()
{
}
}
public interface IFoo
{
void Bar();
}
(Generated with DotMarkdown)