Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 659 Bytes

RCS1163.md

File metadata and controls

31 lines (20 loc) · 659 Bytes

RCS1163: Unused parameter

Property Value
Id RCS1163
Category Redundancy
Severity Info

Example

Code with Diagnostic

public bool Bar(object parameter) // RCS1163
{
    return false;
}

Remarks

This analyzer does not provide a code fix. Use built-in "Change signature.." dialog to remove a parameter.

Unused parameter is not reported when its name consists of underscore(s).

See Also

(Generated with DotMarkdown)