Method FindLast
FindLast(Predicate<T>)
Searches for an item that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire list.
Declaration
public T? FindLast(Predicate<T> match)Parameters
| Type | Name | Description | 
|---|---|---|
| Predicate<T> | match | 
Returns
| Type | Description | 
|---|---|
| T | 
