Property | Value |
---|---|
Id | RCS1056 |
Category | Readability |
Severity | None |
using S = System.String; // RCS1056
public class Foo
{
public void Bar()
{
string s = S.Empty;
}
}
public class Foo
{
public void Bar()
{
string s = System.String.Empty;
}
}
(Generated with DotMarkdown)