Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 533 Bytes

RCS1196.md

File metadata and controls

28 lines (18 loc) · 533 Bytes

RCS1196: Call extension method as instance method

Property Value
Id RCS1196
Category Style
Severity Info

Example

Code with Diagnostic

var x = Enumerable.Select(items, f => f.ToString())

Code with Fix

var x = items.Select(f => f.ToString());

See Also

(Generated with DotMarkdown)