Click or drag to resize

RankedSetTCopyTo Method (T)

Copies the set to a compatible array, starting at the beginning of the array.

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
public void CopyTo(
	T[] array
)

Parameters

array
Type: T
A one-dimensional array that is the destination of the copy.
Exceptions
ExceptionCondition
ArgumentNullExceptionWhen array is null.
ArgumentExceptionWhen not enough space is available for the copy.
Remarks
This is a O(n) operation.
See Also