Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Determine if the ILongArray contains the specified element.

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

Syntax

C#
bool Contains(
	Object value
)

Parameters

value
Type: System..::..Object
Element whose presence in this list is to be tested.

Return Value

true if this list contains the specified element.

Remarks

More formally, returns true if and only if this ILongArray contains at least one element e such that (o==null ? e==null : o.Equals(e)).

See Also