Method Find
Find(Predicate<T>)
Searches the list for an item that matches the conditions in the specified predicate and returns the first matching item.
Declaration
public T? Find(Predicate<T> match)Parameters
| Type | Name | Description | 
|---|---|---|
| Predicate<T> | match | 
Returns
| Type | Description | 
|---|---|
| T | 
