Delegate TesterFunc<T, TResult, TSuccess>
- Namespace
- Cuemon
- Assembly
- Cuemon.Core.dll
Encapsulates a method that has one parameter and returns a value that indicates success of the type specified by the TSuccess parameter and returns a out result value of the type specified by the TResult parameter.
public delegate TSuccess TesterFunc<in T, TResult, out TSuccess>(T arg, out TResult result)
Parameters
argTThe parameter of the method that this function delegate encapsulates.
resultTResultThe result of the method that this function delegate encapsulates.
Returns
- TSuccess
The return value that indicates success of the method that this function delegate encapsulates.
Type Parameters
TThe type of the parameter of the method that this function delegate encapsulates.
TResultThe type of the out result value of the method that this function delegate encapsulates.
TSuccessThe type of the return value that indicates success of the method that this function delegate encapsulates.