Partager via


ListColumnCollection<TBusinessObject>.CopyTo Method (ListColumn<TBusinessObject>[], Int32)

 

Copies the entire ListColumnCollection<TBusinessObject> to a compatible one-dimensional array, starting at the specified index of the target array.

Namespace:   Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly:  Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)

Syntax

public void CopyTo(
    ListColumn<TBusinessObject>[] array,
    int arrayIndex
)
public:
virtual void CopyTo(
    array<ListColumn<TBusinessObject>^>^ array,
    int arrayIndex
) sealed
Public Sub CopyTo (
    array As ListColumn(Of TBusinessObject)(),
    arrayIndex As Integer
)

Parameters

  • arrayIndex
    Type: System.Int32

    The zero-based index in the array at which copying begins.

Implements

ICollection<T>.CopyTo(T[], Int32)

Remarks

TBusinessObject represents a business object that encapsulates information and methods that relate to business data or business functionality. The information in the business object is exposed as properties.

See Also

ListColumnCollection<TBusinessObject> Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace

Return to top