MethodAccessorInvokeStaticFunctionT, TResult(T) Method
Invokes a static function method with one parameter. If the type of the parameter 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<T, TResult>(
T param
)
Public Function InvokeStaticFunction(Of T, TResult) (
param As T
) As TResult
public:
generic<typename T, typename TResult>
TResult InvokeStaticFunction(
T param
)
member InvokeStaticFunction :
param : 'T -> 'TResult
- param T
- The value of the parameter.
- T
- The type of the parameter.
- TResult
- The return type of the method.
TResultThe return value of the method.