Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 930 Bytes

RCS9004.md

File metadata and controls

51 lines (34 loc) · 930 Bytes

RCS9004: Call 'Any' instead of accessing 'Count'

Property Value
Id RCS9004
Severity Info

Examples

Code with Diagnostic

syntaxList.Count > 0

Code with Fix

syntaxList.Any()

Code with Diagnostic

syntaxList.Count == 0

Code with Fix

!syntaxList.Any()

Remarks

This analyzer is applicable for following types:

  • Microsoft.CodeAnalysis.ChildSyntaxList
  • Microsoft.CodeAnalysis.SeparatedSyntaxList<TNode>
  • Microsoft.CodeAnalysis.SyntaxList<TNode>
  • Microsoft.CodeAnalysis.SyntaxNodeOrTokenList
  • Microsoft.CodeAnalysis.SyntaxTokenList
  • Microsoft.CodeAnalysis.SyntaxTriviaList

Applies to

(Generated with DotMarkdown)