Array.FindLastIndex<T> Method (T[], Predicate<T>)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the entire Array.
Assembly: mscorlib (in mscorlib.dll)
Type Parameters
- T
The type of the elements of the array.
Parameters
- array
- Type:
T
[]
The one-dimensional, zero-based Array to search.
- match
- Type: System.Predicate<T>
The Predicate<T> that defines the conditions of the element to search for.
Return Value
Type: System.Int32The zero-based index of the last occurrence of an element that matches the conditions defined by match, if found; otherwise, –1.
| Exception | Condition |
|---|---|
| ArgumentNullException | array is null. -or- match is null. |
The Array is searched backward starting at the last element and ending at the first element.
The Predicate<T> is a delegate to a method that returns true if the object passed to it matches the conditions defined in the delegate. The elements of array are individually passed to the Predicate<T>.
This method is an O(n) operation, where n is the Length of array.