List.CopyTo Method (T[])
Assembly: mscorlib (in mscorlib.dll)
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 List.
This method is an O(n) operation, where n is Count.
The following code example demonstrates all three overloads of the CopyTo method. A List of strings is created and populated with 5 strings. An empty string array of 15 elements is created, and the CopyTo(T[]) method overload is used to copy all the elements of the list to the array beginning at the first element of the array. The CopyTo(T[],Int32) method overload is used to copy all the elements of the list to the array beginning at array index 6 (leaving index 5 empty). Finally, the CopyTo(Int32,T[],Int32,Int32) method overload is used to copy 3 elements from the list, beginning with index 2, to the array beginning at array index 12 (leaving index 11 empty). The contents of the array are then displayed.
Imports System Imports System.Collections.Generic Public Class Example Public Shared Sub Main() Dim dinosaurs As New List(Of String) dinosaurs.Add("Tyrannosaurus") dinosaurs.Add("Amargasaurus") dinosaurs.Add("Mamenchisaurus") dinosaurs.Add("Brachiosaurus") dinosaurs.Add("Compsognathus") Console.WriteLine() For Each dinosaur As String In dinosaurs Console.WriteLine(dinosaur) Next ' Declare an array with 15 elements (0 through 14). Dim array(14) As String dinosaurs.CopyTo(array) dinosaurs.CopyTo(array, 6) dinosaurs.CopyTo(2, array, 12, 3) Console.WriteLine(vbLf & "Contents of the array:") For Each dinosaur As String In array Console.WriteLine(dinosaur) Next End Sub End Class ' This code example produces the following output: ' 'Tyrannosaurus 'Amargasaurus 'Mamenchisaurus 'Brachiosaurus 'Compsognathus ' 'Contents of the array: 'Tyrannosaurus 'Amargasaurus 'Mamenchisaurus 'Brachiosaurus 'Compsognathus ' 'Tyrannosaurus 'Amargasaurus 'Mamenchisaurus 'Brachiosaurus 'Compsognathus ' 'Mamenchisaurus 'Brachiosaurus 'Compsognathus
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.