Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 584 Bytes

RCS1132.md

File metadata and controls

36 lines (26 loc) · 584 Bytes

RCS1132: Remove redundant overriding member

Property Value
Id RCS1132
Category Redundancy
Severity Info

Example

Code with Diagnostic

public class Foo
{
    public override string ToString() // RCS1132
    {
        return base.ToString();
    }
}

Code with Fix

public class Foo
{
}

See Also

(Generated with DotMarkdown)