12 references to RemoveAt
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Syntax\SyntaxListTests.cs (5)
109newList = list.RemoveAt(0); 113newList = list.RemoveAt(list.Count - 1); 170Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); 171Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(list.Count)); 213Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(0));
Microsoft.CodeAnalysis.VisualBasic.Features (1)
CodeRefactorings\InlineTemporary\VisualBasicInlineTemporaryCodeRefactoringProvider.vb (1)
339Dim newStatements = newBlockStatements.RemoveAt(declarationIndex)
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (5)
Syntax\SyntaxListTests.vb (5)
75newList = list.RemoveAt(0) 79newList = list.RemoveAt(list.Count - 1) 136Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.RemoveAt(-1)) 137Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.RemoveAt(list.Count)) 179Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.RemoveAt(0))
Microsoft.CodeAnalysis.Workspaces (1)
Editing\SyntaxGenerator.cs (1)
1552list = list.RemoveAt(offset);