Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 771 Bytes

RCS1182.md

File metadata and controls

35 lines (25 loc) · 771 Bytes

RCS1182: Remove redundant base interface

Property Value
Id RCS1182
Category Redundancy
Default Severity Hidden
Enabled by Default
Supports Fade-Out
Supports Fade-Out Analyzer -

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)