Action<T1,T2,T3> Delegate
Definition
Encapsulates a method that has three parameters and does not return a value.
Delphi
type Action<T1,T2,T3> = reference to procedure(const arg1: T1; const arg2: T2; const arg3: T3)
Type Parameters
- T1
- T2
- T3
Parameters
- arg1
- T1
- arg2
- T2
- arg3
- T3
- Inheritance
-
IInterfaceAction<T1,T2,T3>