Click or drag to resize

PdfTypeDictionaryCopyTo Method

Copies the elements of the Dictionary to an Array, starting at a particular Array index

Namespace: Patagames.Pdf.Net.BasicTypes
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax
public void CopyTo(
	KeyValuePair<string, PdfTypeBase>[] array,
	int arrayIndex
)

Parameters

array  KeyValuePairString, PdfTypeBase
The one-dimensional Array that is the destination of the elements copied from Dictionary. The Array must have zero-based indexing.
arrayIndex  Int32
The zero-based index in array at which copying begins.

Implements

ICollectionTCopyTo(T, Int32)
Exceptions
ExceptionCondition
ArgumentNullExceptionThe array is null.
ArgumentOutOfRangeExceptionarrayIndex is less than 0.
See Also