Property | Value |
---|---|
Id | RR0213 |
Title | Add parameter to interface member |
Syntax | method declaration, indexer declaration |
Span | method name or 'this' keyword |
Enabled by Default | ✓ |
interface IFoo
{
void Bar(object p);
}
class Foo : IFoo
{
public void Bar(object p, object p2)
{
}
}
interface IFoo
{
void Bar(object p, object p2);
}
class Foo : IFoo
{
public void Bar(object p, object p2)
{
}
}
(Generated with DotMarkdown)