Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 502 Bytes

RCS1175.md

File metadata and controls

25 lines (17 loc) · 502 Bytes

RCS1175: Unused this parameter

Property Value
Id RCS1175
Category Redundancy
Severity Info

Example

Code with Diagnostic

public static bool Bar(this Foo foo, object parameter) // RCS1175
{
    return parameter != null;
}

See Also

(Generated with DotMarkdown)