10 references to RemoveAt
Microsoft.CodeAnalysis (4)
Syntax\SeparatedSyntaxList.cs (3)
491nodesWithSeps = nodesWithSeps.RemoveAt(index); 496nodesWithSeps = nodesWithSeps.RemoveAt(index); 500nodesWithSeps = nodesWithSeps.RemoveAt(index - 1);
Syntax\SyntaxNodeOrTokenList.cs (1)
390return this.RemoveAt(index);
Microsoft.CodeAnalysis.CSharp.Features (1)
ConvertAnonymousType\CSharpConvertAnonymousTypeToClassCodeRefactoringProvider.cs (1)
65.RemoveAt(list.Count - 1);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Syntax\SyntaxNodeOrTokenListTests.cs (5)
101newList = list.RemoveAt(0); 105newList = list.RemoveAt(list.Count - 1); 162Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); 163Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(list.Count)); 208Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(0));