10 references to RemoveAt
Microsoft.CodeAnalysis (4)
Syntax\SeparatedSyntaxList.cs (3)
461nodesWithSeps = nodesWithSeps.RemoveAt(index); 466nodesWithSeps = nodesWithSeps.RemoveAt(index); 470nodesWithSeps = nodesWithSeps.RemoveAt(index - 1);
Syntax\SyntaxNodeOrTokenList.cs (1)
356return this.RemoveAt(index);
Microsoft.CodeAnalysis.CSharp.Features (1)
ConvertAnonymousType\CSharpConvertAnonymousTypeToClassCodeRefactoringProvider.cs (1)
63.RemoveAt(list.Count - 1);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Syntax\SyntaxNodeOrTokenListTests.cs (5)
99newList = list.RemoveAt(0); 103newList = list.RemoveAt(list.Count - 1); 160Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); 161Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(list.Count)); 205Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(0));