6 references to RemoveAt
Microsoft.CodeAnalysis (4)
Syntax\SeparatedSyntaxList.cs (3)
490nodesWithSeps = nodesWithSeps.RemoveAt(index); 495nodesWithSeps = nodesWithSeps.RemoveAt(index); 499nodesWithSeps = nodesWithSeps.RemoveAt(index - 1);
Syntax\SyntaxNodeOrTokenList.cs (1)
389return this.RemoveAt(index);
Microsoft.CodeAnalysis.CSharp.Features (1)
ConvertAnonymousType\CSharpConvertAnonymousTypeToClassCodeRefactoringProvider.cs (1)
65.RemoveAt(list.Count - 1);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Syntax\SyntaxNodeOrTokenListTests.cs (1)
208Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(0));