Skip to main content

Images.CopyTo(Array, Int32) Method

Copies the collection to a compatible one-dimensional Array, starting at the specified index of the target array.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public void CopyTo(
    Array array,
    int index
)

Parameters

Name Type Description
array Array

The one-dimensional Array that is the destination of the elements copied from the collection. The Array must have zero-based indexing.

index Int32

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

Remarks

For more information, see the CopyTo topic in MSDN.

See Also