6 references to RemoveAt
Microsoft.CodeAnalysis (4)
Syntax\SeparatedSyntaxList.cs (3)
490
nodesWithSeps = nodesWithSeps.
RemoveAt
(index);
495
nodesWithSeps = nodesWithSeps.
RemoveAt
(index);
499
nodesWithSeps = nodesWithSeps.
RemoveAt
(index - 1);
Syntax\SyntaxNodeOrTokenList.cs (1)
389
return 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)
208
Assert.Throws<ArgumentOutOfRangeException>(() => list.
RemoveAt
(0));