| PostProcessorChainICollectionPostProcessorCopyTo Method |
Copies the elements of the post-processor chain to an
Array, starting
at a particular
Array index.
Namespace: DigitalRune.Graphics.PostProcessingAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax void ICollection<PostProcessor>.CopyTo(
PostProcessor[] array,
int arrayIndex
)
Private Sub CopyTo (
array As PostProcessor(),
arrayIndex As Integer
) Implements ICollection(Of PostProcessor).CopyTo
private:
virtual void CopyTo(
array<PostProcessor^>^ array,
int arrayIndex
) sealed = ICollection<PostProcessor^>::CopyTo
private abstract CopyTo :
array : PostProcessor[] *
arrayIndex : int -> unit
private override CopyTo :
array : PostProcessor[] *
arrayIndex : int -> unit
Parameters
- array
- Type: DigitalRune.Graphics.PostProcessingPostProcessor
The one-dimensional Array that is the destination of the elements copied from
post-processor chain. The Array must have zero-based indexing.
- arrayIndex
- Type: SystemInt32
The zero-based index in array at which copying begins.
Implements
ICollectionTCopyTo(T, Int32)Exceptions Exception | Condition |
---|
ArgumentNullException | array is .
|
ArgumentOutOfRangeException | arrayIndex is less than 0.
|
ArgumentException | array is multidimensional. Or arrayIndex is equal to
or greater than the length of array. Or the number of elements in the
source post-processor chain is greater than the available space from
arrayIndex to the end of the destination array.
|
See Also