6 references to RemoveAt
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Syntax\SyntaxListTests.cs (5)
114newList = list.RemoveAt(0); 118newList = list.RemoveAt(list.Count - 1); 175Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); 176Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(list.Count)); 219Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(0));
Microsoft.CodeAnalysis.Workspaces (1)
Editing\SyntaxGenerator.cs (1)
1618list = list.RemoveAt(offset);