This topic has not yet been rated - Rate this topic

SortedSet<T>.CopyTo Method (T[], Int32, Int32)

Copies a specified number of elements from SortedSet<T> to a compatible one-dimensional array, starting at the specified array index.

Namespace:  System.Collections.Generic
Assembly:  System (in System.dll)
public void CopyTo(
	T[] array,
	int index,
	int count
)

Parameters

array
Type: T[]
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.
count
Type: System.Int32
The number of elements to copy.
Exception Condition
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.

-or-

count is less than zero.

This method is an O(n) operation, where n is count.

.NET Framework

Supported in: 4

.NET Framework Client Profile

Supported in: 4

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ