ConcurrentListTFindAll Method |
Retrieves all the elements that match the conditions defined by the specified function;
Namespace:
ShellBoost.Core.Utilities
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax public virtual List<T> FindAll(
Func<T, bool> match
)
Parameters
- match
- Type: SystemFuncT, Boolean
The function that defines the conditions of the elements to search for.
Return Value
Type:
ListTA list containing all the elements that match the conditions defined by the specified function, if found; otherwise, an empty list.
See Also