1 implementation of Indices
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4862public ImmutableArray<IOperation> Indices { get; }
9 references to Indices
Microsoft.CodeAnalysis (3)
Operations\ControlFlowGraphBuilder.cs (3)
2117ImmutableArray<IOperation> visitedIndices = VisitArray(operation.Indices); 6082VisitAndPushArray(arrayReference.Indices); 6136ImmutableArray<IOperation> indices = PopArray(arrayElementReference.Indices);
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
CSharpUseIndexOperatorDiagnosticAnalyzer.cs (2)
145if (arrayElementReference.Indices.Length != 1) 152arrayElementReference.Indices[0],
Microsoft.CodeAnalysis.CSharp.Features (2)
CSharpUseIndexOperatorDiagnosticAnalyzer.cs (2)
145if (arrayElementReference.Indices.Length != 1) 152arrayElementReference.Indices[0],
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
941VisitArray(operation.Indices, "Indices", logElementCount: true);
Compilation\TestOperationVisitor.cs (1)
589AssertEx.Equal(new[] { operation.ArrayReference }.Concat(operation.Indices), operation.ChildOperations);