AppearanceDictionary.CopyTo

CopyTo(XForm[], int)

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

public void CopyTo(XForm[] array, int index)
ParameterTypeDescription
arrayXForm[]Array where items must be copied.
indexInt32Index where items must be copied.

See Also


CopyTo(KeyValuePair<string, XForm>[], int)

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

public void CopyTo(KeyValuePair<string, XForm>[] array, int arrayIndex)
ParameterTypeDescription
arrayKeyValuePair`2[]The one-dimensional Array that is the destination of the elements copied from ICollection. The Array must have zero-based indexing.
arrayIndexInt32The zero-based index in array at which copying begins.

See Also