pmMDA.NET

SortedArray.CopyTo Method 

[This is preliminary documentation and subject to change.]

Copies the items of this list to an Array, starting at a specified array index.

public void CopyTo(
   Array array,
   int index
);

Parameters

array
The one-dimensional Array that is the destination of the items copied from this list.
index
The index in the array at which copying begins.

Implements

ICollection.CopyTo

Exceptions

Exception Type Condition
ArgumentNullException array is a null reference.
ArgumentOutOfRangeException index is less than zero.
ArgumentException array is multidimensional.
-or-
index is equal to or greater than the length of the array.
-or-
The number of items in the source list is greater than the available space from the index to the end of the destination array.

See Also

SortedArray Class | PmMda.Net.Dog.Paging Namespace