12 references to RemoveAt
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Syntax\SyntaxListTests.cs (5)
109
newList = list.
RemoveAt
(0);
113
newList = list.
RemoveAt
(list.Count - 1);
170
Assert.Throws<ArgumentOutOfRangeException>(() => list.
RemoveAt
(-1));
171
Assert.Throws<ArgumentOutOfRangeException>(() => list.
RemoveAt
(list.Count));
213
Assert.Throws<ArgumentOutOfRangeException>(() => list.
RemoveAt
(0));
Microsoft.CodeAnalysis.VisualBasic.Features (1)
CodeRefactorings\InlineTemporary\VisualBasicInlineTemporaryCodeRefactoringProvider.vb (1)
339
Dim newStatements = newBlockStatements.
RemoveAt
(declarationIndex)
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)
1552
list = list.
RemoveAt
(offset);