Extended Binding ListTFind Method
Search the collection for the first item that matches the conditions in the specified predicate
Definition
Namespace: EWSoftware.PDI.Binding
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
The first item found that matches the conditions or the default value for type T if nothing is found.
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public T Find(
Predicate<T> match
)VB
Public Function Find (
match As Predicate(Of T)
) As TC++
public:
T Find(
Predicate<T>^ match
)F#
member Find :
match : Predicate<'T> -> 'T Parameters
- match PredicateT
- The PredicateT delegate that defines the conditions of the match
Return Value
TThe first item found that matches the conditions or the default value for type T if nothing is found.