Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 617 Bytes

RCS1034.md

File metadata and controls

37 lines (27 loc) · 617 Bytes

RCS1034: Remove redundant 'sealed' modifier

Property Value
Id RCS1034
Category Redundancy
Severity Hidden

Example

Code with Diagnostic

public sealed class Foo
{
    public sealed override string ToString() // RCS1034
    {
        return "";
    }
}

Code with Fix

public override string ToString()
{
    return "";
}

See Also

(Generated with DotMarkdown)