DataCollection | ComponentOne
C1.UWP.DataCollection Assembly / C1.UWP.DataCollection Namespace / C1CollectionView Class / CopyTo Method
The one-dimensional object array that is the destination of the elements copied from C1CollectionView. The System.Array must have zero-based indexing.
The zero-based index in array at which copying begins.

In This Topic
    CopyTo Method (C1CollectionView)
    In This Topic
    Copies the elements of the C1CollectionView to an System.Array, starting at a particular object array index.
    Syntax
    'Declaration
     
    Public Sub CopyTo( _
       ByVal array() As Object, _
       ByVal arrayIndex As Integer _
    ) 
    public void CopyTo( 
       object[] array,
       int arrayIndex
    )

    Parameters

    array
    The one-dimensional object array that is the destination of the elements copied from C1CollectionView. The System.Array must have zero-based indexing.
    arrayIndex
    The zero-based index in array at which copying begins.
    See Also