'Declaration
Public Overloads Function Find(Of TTarget As T)( _ ByVal match As Predicate(Of TTarget) _ ) As TTarget
'Usage
Dim instance As FieldCollection(Of T) Dim match As Predicate(Of TTarget) Dim value As TTarget value = instance.Find(Of TTarget)(match)
public TTarget Find<TTarget>( Predicate<TTarget> match ) where TTarget: T
Parameters
Type Parameters
- TTarget
Return Value
The first T that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type TTarget.