10 references to RemoveAt
Microsoft.CodeAnalysis (3)
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1.cs (3)
369
return self.
RemoveAt
(index);
381
return self.
RemoveAt
(index);
631
=>
RemoveAt
(index);
Microsoft.CodeAnalysis.UnitTests (7)
Collections\ImmutableSegmentedListTest.cs (7)
87
actual = actual.
RemoveAt
(position);
423
Assert.Throws<ArgumentOutOfRangeException>("index", () => list.
RemoveAt
(0));
424
Assert.Throws<ArgumentOutOfRangeException>("index", () => list.
RemoveAt
(-1));
425
Assert.Throws<ArgumentOutOfRangeException>("index", () => list.
RemoveAt
(1));
432
list = list.
RemoveAt
(2);
436
list = list.
RemoveAt
(8);
440
list = list.
RemoveAt
(0);