2 overrides of ShouldAnalyzeForEachStatement
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
CSharpUseExplicitTypeHelper.cs (1)
54protected override bool ShouldAnalyzeForEachStatement(ForEachStatementSyntax forEachStatement, SemanticModel semanticModel, CancellationToken cancellationToken)
CSharpUseImplicitTypeHelper.cs (1)
60protected override bool ShouldAnalyzeForEachStatement(ForEachStatementSyntax forEachStatement, SemanticModel semanticModel, CancellationToken cancellationToken)
3 references to ShouldAnalyzeForEachStatement
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CSharpTypeStyleHelper.cs (1)
90ForEachStatementSyntax forEachStatement => ShouldAnalyzeForEachStatement(forEachStatement, semanticModel, cancellationToken)
CSharpUseExplicitTypeHelper.cs (1)
63return base.ShouldAnalyzeForEachStatement(forEachStatement, semanticModel, cancellationToken);
CSharpUseImplicitTypeHelper.cs (1)
70return base.ShouldAnalyzeForEachStatement(forEachStatement, semanticModel, cancellationToken);