Click or drag to resize
ReadOnlyListBaseTFindLastIndex Method (PredicateT)
Finds the index of the last item in the list that satisfies the condition defined by predicate. If no item matches the condition, -1 is returned.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public virtual int FindLastIndex(
	Predicate<T> predicate
)

Parameters

predicate
Type: SystemPredicateT
A delegate that defined the condition to check for.

Return Value

Type: Int32
The index of the last item that satisfies the condition predicate. If no item satisfies that condition, -1 is returned.
See Also