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