ICollection.CopyTo Method
Assembly: mscorlib (in mscorlib.dll)
'Declaration Sub CopyTo ( _ array As T(), _ arrayIndex As Integer _ ) 'Usage Dim instance As ICollection(Of T) Dim array As T() Dim arrayIndex As Integer instance.CopyTo(array, arrayIndex)
void CopyTo ( T[] array, int arrayIndex )
function CopyTo ( array : T[], arrayIndex : int )
Not applicable.
Parameters
- array
The one-dimensional Array that is the destination of the elements copied from ICollection. The Array must have zero-based indexing.
- arrayIndex
The zero-based index in array at which copying begins.
| Exception type | Condition |
|---|---|
| array is a null reference (Nothing in Visual Basic). | |
| arrayIndex is less than 0. | |
| array is multidimensional. -or- arrayIndex is equal to or greater than the length of array. -or- The number of elements in the source ICollection is greater than the available space from arrayIndex to the end of the destination array. -or- Type T cannot be cast automatically to the type of the destination array. |
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.