14 references to RemoveAt
Microsoft.Build (3)
Graph\ProjectGraph.cs (3)
767targetList = targetList.RemoveAt(i); 808.RemoveAt(i) 821.RemoveAt(i)
Microsoft.Build.Framework (1)
ImmutableSegmentedList`1.cs (1)
392/// <inheritdoc cref="ImmutableList{T}.RemoveAt(int)"/>
Microsoft.CodeAnalysis (1)
src\Dependencies\Collections\ImmutableSegmentedList`1.cs (1)
392/// <inheritdoc cref="ImmutableList{T}.RemoveAt(int)"/>
Microsoft.CodeAnalysis.CodeStyle (1)
src\Dependencies\Collections\ImmutableSegmentedList`1.cs (1)
392/// <inheritdoc cref="ImmutableList{T}.RemoveAt(int)"/>
Microsoft.CodeAnalysis.Collections.Package (1)
ImmutableSegmentedList`1.cs (1)
392/// <inheritdoc cref="ImmutableList{T}.RemoveAt(int)"/>
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (2)
CodeGen\CodeGenNullable.vb (2)
6735operands = operands.RemoveAt(0) 6742operators = operators.RemoveAt(0)
Microsoft.CodeAnalysis.Workspaces (2)
src\Dependencies\Collections\ImmutableSegmentedList`1.cs (1)
392/// <inheritdoc cref="ImmutableList{T}.RemoveAt(int)"/>
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker.cs (1)
389currentState.PendingTranslationActions.RemoveAt(0));
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Dependencies\Collections\ImmutableSegmentedList`1.cs (1)
392/// <inheritdoc cref="ImmutableList{T}.RemoveAt(int)"/>
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableList_1.cs (2)
289return index < 0 ? this : this.RemoveAt(index); 864IImmutableList<T> IImmutableList<T>.RemoveAt(int index) => this.RemoveAt(index);