Collection.CopyTo Method
.NET Framework 3.0
Copies the entire Collection to a compatible one-dimensional Array, starting at the specified index of the target array.
Namespace: System.Collections.ObjectModel
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Sub CopyTo ( _ array As T(), _ index As Integer _ ) 'Usage Dim instance As Collection(Of T) Dim array As T() Dim index As Integer instance.CopyTo(array, index)
public final void CopyTo ( T[] array, int index )
public final function CopyTo ( array : T[], index : int )
Not applicable.
Parameters
- array
The one-dimensional Array that is the destination of the elements copied from Collection. The Array must have zero-based indexing.
- index
The zero-based index in array at which copying begins.
This method uses System.Array.Copy to copy the elements.
The elements are copied to the Array in the same order in which the enumerator iterates through the Collection.
This method is an O(n) operation, where n is Count.
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.Community Additions
ADD
Show: