Oracle® Coherence .NET API Reference Release 3.6.1
E18812-01

Determine if the ILongArray contains the specified element.

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

Syntax

C#
public virtual 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.

Implements

ILongArray..::.Contains(Object)

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