2 overrides of CopyToImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListBuilderTest.cs (1)
471private protected override void CopyToImpl<T>(ImmutableSegmentedList<T> list, int index, T[] array, int arrayIndex, int count)
Collections\ImmutableSegmentedListTest.cs (1)
896private protected override void CopyToImpl<T>(ImmutableSegmentedList<T> list, int index, T[] array, int arrayIndex, int count)
4 references to CopyToImpl
Microsoft.CodeAnalysis.UnitTests (4)
Collections\ImmutableListTestBase.cs (4)
76CopyToImpl(ImmutableSegmentedList<int>.Empty, 0, array, 0, 0); 95CopyToImpl(list, 0, array, 0, list.Count); 99CopyToImpl(list, 0, array, 0, array.Length); 103CopyToImpl(list, 1, array, 2, 1);