Click or drag to resize

IHListTLastIndexOf Method

Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element. More formally, returns the highest index i such that (o == null ? get(i) == null : o.equals(get(i))) or -1 if there is no such index.

Namespace:  Hazelcast.Core
Assembly:  Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.2
Syntax
int LastIndexOf(
	T o
)

Parameters

o
Type: T
element to search for

Return Value

Type: Int32
the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element
See Also