Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Construct the simple enumerator based on an array of objects, making a copy of the array if specified.

Namespace: Tangosol.Util
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public SimpleEnumerator(
	Object[] items,
	int start,
	int countItems,
	bool forward,
	bool copy
)

Parameters

items
Type: array<System..::..Object>[]()[][]
Array of objects to enumerate.
start
Type: System..::..Int32
The first object position.
countItems
Type: System..::..Int32
The number of objects to enumerate.
forward
Type: System..::..Boolean
true to iterate forwards, false to iterate from the end backwards to the beginning.
copy
Type: System..::..Boolean
Pass true to make a copy of the array or false if the array's contents will not change.

See Also