ICollection.CopyTo Method

SortedSet<T>.ICollection.CopyTo Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Copies the complete SortedSet<T> to a compatible one-dimensional array, starting at the specified array index.

Namespace:  System.Collections.Generic
Assembly:  System (in System.dll)

void ICollection.CopyTo(
	Array array,
	int index
)

Parameters

array
Type: System.Array
A one-dimensional array that is the destination of the elements copied from the SortedSet<T>. The array must have zero-based indexing.
index
Type: System.Int32
The zero-based index in array at which copying begins.

Implements

ICollection.CopyTo(Array, Int32)

ExceptionCondition
ArgumentException

The number of elements in the source array is greater than the available space from index to the end of the destination array.

ArgumentNullException

array is null.

ArgumentOutOfRangeException

index is less than zero.

This member is an explicit interface member implementation. It can be used only when the SortedSet<T> instance is cast to an ICollection interface.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft