ExtendedBindingListTFind Method
Search the collection for the first item that matches the conditions in the specified predicate
Namespace: EWSoftware.PDI.BindingAssembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public T Find(
Predicate<T> match
)
Public Function Find (
match As Predicate(Of T)
) As T
public:
T Find(
Predicate<T>^ match
)
member Find :
match : Predicate<'T> -> 'T
- match PredicateT
- The PredicateT delegate that defines the conditions of the match
TThe first item found that matches the conditions or the default value for type T if nothing
is found.