Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 536 Bytes

RCS1094.md

File metadata and controls

35 lines (24 loc) · 536 Bytes

RCS1094: Declare using directive on top level

Property Value
Id RCS1094
Category Readability
Severity None

Example

Code with Diagnostic

namespace Foo
{
    using System; // RCS1094
}

Code with Fix

using System;

namespace Foo
{
}

See Also

(Generated with DotMarkdown)