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.8.0.1
Syntax
Parameters
- o
- Type: T
 element to search for
Return Value
Type: Int32the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element
See Also
