CogIndexableCollection T  Constructor (IEnumerable T , Action Int32, T )Cognex VisionPro 9.7
Constructs a CogIndexableCollection wrapper around inner.

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

protected CogIndexableCollection(
	IEnumerable<T> inner,
	Action<int, T> itemSetter
)

Parameters

inner
Type: System.Collections.Generic IEnumerable T 
The internal sequence of items.
itemSetter
Type: System Action Int32, T 
The method used to implement the indexer setter.
Remarks

The itemSetter argument must be a serializable delegate. Note that delegates generated from lambda expressions are not serializable.
See Also