Property | Value |
---|---|
Id | RCS1225 |
Category | Design |
Severity | Info |
A class that has only private constructors should be marked as sealed.
public class Foo // RCS1225
{
private Foo()
{
}
}
public sealed class Foo
{
private Foo()
{
}
}
(Generated with DotMarkdown)