Click or drag to resize

PdfArrayWrapperTCopyTo Method

Copies the elements of the collection to the array, starting at a particular index.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntax
public void CopyTo(
	T[] array,
	int index
)

Parameters

array  T
The one-dimensional System.Array that is the destination of the elements copied from collection. The System.Array must have zero-based indexing.
index  Int32
The zero-based index in array at which copying begins.

Implements

ICollectionTCopyTo(T, Int32)
Exceptions
ExceptionCondition
ArgumentNullExceptionarray is null.
ArgumentOutOfRangeExceptionindex is less than 0.
See Also