Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 671 Bytes

RCS1056.md

File metadata and controls

42 lines (31 loc) · 671 Bytes

RCS1056: Avoid usage of using alias directive

Property Value
Id RCS1056
Category Readability
Severity None

Example

Code with Diagnostic

using S = System.String; // RCS1056

public class Foo
{
    public void Bar()
    {
        string s = S.Empty;
    }
}

Code with Fix

public class Foo
{
    public void Bar()
    {
        string s = System.String.Empty;
    }
}

See Also

(Generated with DotMarkdown)