'Declaration Public Sub CopyTo( _ ByVal array As Array, _ ByVal startIndex As Integer _ )
'Usage Dim instance As ListBase Dim array As Array Dim startIndex As Integer instance.CopyTo(array, startIndex)
public void CopyTo( Array array, int startIndex )
Parameters
- array
- The one-dimensional array that is the destination of the items copied from System.Collections.ICollection. The Array must have zero-based indexing.
- startIndex
- The zero-based index in array at which copying begins.