StateManagedCollection.CopyTo(Array, Int32) Method
Definition
Copies the elements of the StateManagedCollection collection to an array, starting at a particular array index.
public:
virtual void CopyTo(Array ^ array, int index);
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (array As Array, index As Integer)
Parameters
- array
- Array
The one-dimensional Array that is the destination of the elements copied from the StateManagedCollection. The Array must have zero-based indexing.
- index
- Int32
The zero-based index in array
at which copying begins.
Implements
Exceptions
array
is null
.
index
is less than zero.
array
is multidimensional.
-or-
index
is greater than or equal to the length of array
.
-or-
The number of elements in the source StateManagedCollection is greater than the available space from the index
to the end of the destination array
.
Remarks
The specified array must be of a compatible type.
The elements are copied to the Array in the same order in which the enumerator iterates through the StateManagedCollection collection.