Click or drag to resize

ImmutableMultiListFlatten Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Create a single dimensional array containing all elements of the specified array of arrays.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public static Array Flatten(
	Object[][] aaoFrom,
	int cTotal,
	Array aoTo,
	int iTo
)

Parameters

aaoFrom
Type: SystemObject
An array of arrays to copy from.
cTotal
Type: SystemInt32
The total length of the flattened array; pass -1 for it to be calculated.
aoTo
Type: SystemArray
An array to copy the elements into (optional).
iTo
Type: SystemInt32
The position into aoTo at which to start copying.

Return Value

Type: Array
An array containing all the elements of the array of arrays.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException If the total length parameter was not sufficient to hold the flattened array.
See Also