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