Func<T1,T2,T3,T4,TResult> Delegate

Definition

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

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

Type Parameters

T1
T2
T3
T4
TResult

Parameters

arg1
T1
arg2
T2
arg3
T3
arg4
T4

Returns

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

Methods