Copies the contained double into the supplied, previously allocated
array of double starting at the specified index.
Namespace: Cognex.VisionPro3DAssembly: Cognex.VisionPro3D.Core (in Cognex.VisionPro3D.Core.dll) Version: 75.0.0.0
Syntax
Parameters
- arr
- Type: System Double
The destination array of type double. May not be null.
- index
- Type: System Int32
A zero based index into the destination array at which copying begins.
Implements
ICollection T CopyTo( T , Int32)Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | If arr is null. |
| ArgumentOutOfRangeException | If the index argument is not valid. |
| ArgumentException | If the supplied array is not of rank 1. |
| ArgumentException | If the supplied array does not have zero based indexing. |
| ArgumentException | If the contained double will not fit into the destination array starting at the specified index. |
See Also