MethodAccessorInvokeStaticFunctionT1, T2, TResult(T1, T2) Method
Invokes a static function method with two parameters. If the type of the parameters or the return value
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 TResult InvokeStaticFunction<T1, T2, TResult>(
T1 param1,
T2 param2
)
Public Function InvokeStaticFunction(Of T1, T2, TResult) (
param1 As T1,
param2 As T2
) As TResult
public:
generic<typename T1, typename T2, typename TResult>
TResult InvokeStaticFunction(
T1 param1,
T2 param2
)
member InvokeStaticFunction :
param1 : 'T1 *
param2 : 'T2 -> 'TResult
- param1 T1
- The value of the first parameter.
- param2 T2
- The value of the second parameter.
- T1
- The type of the first parameter.
- T2
- The type of the second parameter.
- TResult
- The return type of the method.
TResultThe return value of the method.