Predicate<(Of <(<'T>)>)> Delegate
Represents the method that defines a set of criteria and determines whether the specified object meets those criteria.
Namespace:
SystemAssembly: Bridge (in Bridge.dll)
Syntax
[NameAttribute] [ExternalAttribute] public delegate bool Predicate<T>( T obj )
<NameAttribute> _ <ExternalAttribute> _ Public Delegate Function Predicate(Of T) ( _ obj As T _ ) As Boolean
[NameAttribute] [ExternalAttribute] generic<typename T> public delegate bool^ Predicate( T obj )
Type Parameters
- T
- The type of the object to compare.This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
Parameters
- obj
- Type: T
The object to compare against the criteria defined within the method represented by this delegate.