Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 526 Bytes

RCS1080.md

File metadata and controls

32 lines (22 loc) · 526 Bytes

RCS1080: Use 'Count/Length' property instead of 'Any' method

Property Value
Id RCS1080
Category Performance
Severity Info

Example

Code with Diagnostic

if (list.Any()) // RCS1080
{
}

Code with Fix

if (list.Count > 0)
{
}

See Also

(Generated with DotMarkdown)