Click or drag to resize

ConcurrentListTFindAll Method

Retrieves all the elements that match the conditions defined by the specified function;

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
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: ListT
A list containing all the elements that match the conditions defined by the specified function, if found; otherwise, an empty list.
See Also