StateManagedCollection.CopyTo Method
.NET Framework 2.0
Copies the elements of the StateManagedCollection collection to an array, starting at a particular array index.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public final void CopyTo ( Array array, int index )
public final function CopyTo ( array : Array, index : int )
Not applicable.
Parameters
- array
The one-dimensional Array that is the destination of the elements copied from the StateManagedCollection. The Array must have zero-based indexing.
- index
The zero-based index in array at which copying begins.
| Exception type | Condition |
|---|---|
|
array is a null reference (Nothing in Visual Basic). | |
|
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. |
Community Additions
ADD
Show: