Click or drag to resize

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:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
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: T
The first element that matches the conditions defined by the specified function, if found; otherwise, the default value for type T.
See Also