Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Determine if the ILongArray contains the specified element.

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

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