CogDLRuntimeParams CopyTo Method Cognex VisionPro 9.24
Copy the ICogDLRuntimeParam references in this dictionary into the supplied array, starting to write at the supplied array index.

Namespace: Cognex.VisionPro.DLRuntime
Assembly: Cognex.VisionPro.DLRuntime (in Cognex.VisionPro.DLRuntime.dll) Version: 91.0.0.0 (91.0.0.0)
Syntax

public void CopyTo(
	ICogDLRuntimeParam[] array,
	int index
)

Parameters

array
Type:  Cognex.VisionPro.DLRuntime ICogDLRuntimeParam 
The destination array.
index
Type: System Int32
The destination array index at which writing should begin.

Implements

ICollection T  CopyTo( T , Int32)
Exceptions

ExceptionCondition
ArgumentNullException If the array argument is null.
ArgumentOutOfRangeException If the index argument is less than zero.
ArgumentException If the number of elements in the dictionary is greater than the available space from index to the end of the destination array.
See Also