Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 806 Bytes

RCS1219.md

File metadata and controls

35 lines (25 loc) · 806 Bytes

RCS1219: Call 'Enumerable.Skip' and 'Enumerable.Any' instead of 'Enumerable.Count'

Property Value
Id RCS1219
Category Performance
Default Severity Info
Enabled by Default -
Supports Fade-Out -
Supports Fade-Out Analyzer -

Example

Code with Diagnostic

if (enumerable.Count() > x) // RCS1219
{
}

Code with Fix

if (enumerable.Skip(x).Any())
{
}

See Also

(Generated with DotMarkdown)