MethodAccessorInvokeStaticActionT1, T2, T3, T4(T1, T2, T3, T4) Method
Invokes a static action method with four parameters. If the type of the parameters are not known at compile time
the non-generic
Invoke methods can be used.
Namespace: KGySoft.ReflectionAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public void InvokeStaticAction<T1, T2, T3, T4>(
T1 param1,
T2 param2,
T3 param3,
T4 param4
)
Public Sub InvokeStaticAction(Of T1, T2, T3, T4) (
param1 As T1,
param2 As T2,
param3 As T3,
param4 As T4
)
public:
generic<typename T1, typename T2, typename T3, typename T4>
void InvokeStaticAction(
T1 param1,
T2 param2,
T3 param3,
T4 param4
)
member InvokeStaticAction :
param1 : 'T1 *
param2 : 'T2 *
param3 : 'T3 *
param4 : 'T4 -> unit
- param1 T1
- The value of the first parameter.
- param2 T2
- The value of the second parameter.
- param3 T3
- The value of the third parameter.
- param4 T4
- The value of the fourth parameter.
- T1
- The type of the first parameter.
- T2
- The type of the second parameter.
- T3
- The type of the third parameter.
- T4
- The type of the fourth parameter.