StateManagedCollection::CopyTo Method (Array^, Int32)
Copies the elements of the StateManagedCollection collection to an array, starting at a particular array index.
Assembly: System.Web (in System.Web.dll)
Parameters
- array
-
Type:
System::Array^
The one-dimensional Array that is the destination of the elements copied from the StateManagedCollection. 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)| Exception | Condition |
|---|---|
| ArgumentNullException | array is null. |
| ArgumentOutOfRangeException | index is less than zero. |
| ArgumentException | 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. |
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.
Available since 2.0