7 references to RemoveAt
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Syntax\SyntaxListTests.cs (1)
219
Assert.Throws<ArgumentOutOfRangeException>(() => list.
RemoveAt
(0));
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (5)
Syntax\SyntaxListTests.vb (5)
75
newList = list.
RemoveAt
(0)
79
newList = list.
RemoveAt
(list.Count - 1)
136
Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.
RemoveAt
(-1))
137
Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.
RemoveAt
(list.Count))
179
Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.
RemoveAt
(0))
Microsoft.CodeAnalysis.Workspaces (1)
Editing\SyntaxGenerator.cs (1)
1556
list = list.
RemoveAt
(offset);