Method FindLastIndex
FindLastIndex(int, int, Predicate<T>)
Searches for an item that matches the conditions defined by the specified predicate, and returns the index of the last occurrence within the range of
items in the list that contains the specified number of items and ends at the specified index.
Declaration
public int FindLastIndex(int startIndex, int count, Predicate<T> match)
Parameters
Returns
FindLastIndex(int, Predicate<T>)
Searches for an item that matches the conditions defined by the specified predicate, and returns the index of the last occurrence within the range of
items in the list that extends from the first item to the specified index.
Declaration
public int FindLastIndex(int startIndex, Predicate<T> match)
Parameters
Returns
FindLastIndex(Predicate<T>)
Searches for an item that matches the conditions defined by the specified predicate, and returns the index of the last occurrence within the entire
list.
Declaration
public int FindLastIndex(Predicate<T> match)
Parameters
Returns