Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 525 Bytes

RCS1074.md

File metadata and controls

35 lines (25 loc) · 525 Bytes

RCS1074: Remove redundant constructor

Property Value
Id RCS1074
Category Redundancy
Severity Hidden

Example

Code with Diagnostic

public class Foo
{
    public Foo() // RCS1074
    {
    }
}

Code with Fix

public class Foo
{
}

See Also

(Generated with DotMarkdown)