'Declaration Public Shared Function Select (Of T,TR)( _ ByVal items As IEnumerable(Of T), _ ByVal selector As Func(Of T,Boolean,Boolean,TR) _ ) As IEnumerable(Of TR)
public static IEnumerable<TR> Select<T,TR>( IEnumerable<T> items, Func<T,bool,bool,TR> selector )
Parameters
- items
- selector
Type Parameters
- T
- TR