Click or drag to resize

ConverterCollectionsConvertArray Method (Object, IConverter)

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Convert the contents of the passed array.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public static Object[] ConvertArray(
	Object[] ao,
	IConverter conv
)

Parameters

ao
Type: SystemObject
An array of objects to convert.
conv
Type: Tangosol.UtilIConverter
The IConverter to use to convert the objects.

Return Value

Type: Object
The passed array.
Remarks
The conversion is done "in place" in the passed array.

This helper method is intended to support the functionality of CopyTo(Array, Int32).

See Also