6 references to RemoveAt
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Syntax\SyntaxListTests.cs (5)
114
newList = list.
RemoveAt
(0);
118
newList = list.
RemoveAt
(list.Count - 1);
175
Assert.Throws<ArgumentOutOfRangeException>(() => list.
RemoveAt
(-1));
176
Assert.Throws<ArgumentOutOfRangeException>(() => list.
RemoveAt
(list.Count));
219
Assert.Throws<ArgumentOutOfRangeException>(() => list.
RemoveAt
(0));
Microsoft.CodeAnalysis.Workspaces (1)
Editing\SyntaxGenerator.cs (1)
1618
list = list.
RemoveAt
(offset);