Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 541 Bytes

RCS1182.md

File metadata and controls

32 lines (22 loc) · 541 Bytes

RCS1182: Remove redundant base interface

Property Value
Id RCS1182
Category Redundancy
Severity Hidden

Example

Code with Diagnostic

public class Foo<T> : List<T>, IEnumerable<T> // RCS1182
{
}

Code with Fix

public class Foo<T> : List<T>
{
}

See Also

(Generated with DotMarkdown)