Func<T1,T2,TResult> Delegate
Definition
Encapsulates a method that has two parameters and returns a value of the type specified by the TResult parameter.
Delphi
type Func<T1,T2,TResult> = reference to function(const arg1: T1; const arg2: T2): TResult
Type Parameters
- T1
- T2
- TResult
Parameters
- arg1
- T1
- arg2
- T2
Returns
TResult
- Inheritance
-
IInterfaceFunc<T1,T2,TResult>