Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 581 Bytes

RCS1160.md

File metadata and controls

38 lines (28 loc) · 581 Bytes

RCS1160: Abstract type should not have public constructors

Property Value
Id RCS1160
Category Design
Severity Info

Example

Code with Diagnostic

public abstract class Foo
{
    public Foo() // RCS1160
    {
    }
}

Code with Fix

public abstract class Foo
{
    protected Foo()
    {
    }
}

See Also

(Generated with DotMarkdown)