Property | Value |
---|---|
Id | RCS1035 |
Category | Redundancy |
Severity | None |
public void Foo()
{
var arr = new string[] { "a", "b", "c", }; // RCS1035
}
public void Foo()
{
var arr = new string[] { "a", "b", "c" };
}
(Generated with DotMarkdown)
Property | Value |
---|---|
Id | RCS1035 |
Category | Redundancy |
Severity | None |
public void Foo()
{
var arr = new string[] { "a", "b", "c", }; // RCS1035
}
public void Foo()
{
var arr = new string[] { "a", "b", "c" };
}
(Generated with DotMarkdown)