7 references to RemoveAt
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Syntax\SyntaxListTests.cs (1)
219Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(0));
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (5)
Syntax\SyntaxListTests.vb (5)
75newList = list.RemoveAt(0) 79newList = list.RemoveAt(list.Count - 1) 136Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.RemoveAt(-1)) 137Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.RemoveAt(list.Count)) 179Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.RemoveAt(0))
Microsoft.CodeAnalysis.Workspaces (1)
Editing\SyntaxGenerator.cs (1)
1556list = list.RemoveAt(offset);