Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 518 Bytes

RCS1110.md

File metadata and controls

35 lines (25 loc) · 518 Bytes

RCS1110: Declare type inside namespace

Property Value
Id RCS1110
Category Design
Severity Info

Example

Code with Diagnostic

public class Foo // RCS1110
{
}

Code with Fix

namespace Namespace
{
    public class Foo
    {
    }
}

See Also

(Generated with DotMarkdown)