Func<T1,T2,T3,TResult> Delegate

Definition

Encapsulates a method that has three parameters and returns a value of the type specified by the TResult parameter.

Delphi
type Func<T1,T2,T3,TResult> = reference to function(const arg1: T1; const arg2: T2; const arg3: T3): TResult

Type Parameters

T1
T2
T3
TResult

Parameters

arg1
T1
arg2
T2
arg3
T3

Returns

TResult
Inheritance
IInterface
Func<T1,T2,T3,TResult>

Methods