ConcurrentListTFind Method |
Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire list.
Namespace:
ShellBoost.Core.Utilities
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax public virtual T Find(
Func<T, bool> match
)
Parameters
- match
- Type: SystemFuncT, Boolean
The function that defines the conditions of the elements to find.
Return Value
Type:
TThe first element that matches the conditions defined by the specified function, if found; otherwise, the default value for type T.
See Also