Delegate TesterFunc<TResult, TSuccess>
- Namespace
- Cuemon
- Assembly
- Cuemon.Core.dll
Encapsulates a method 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<TResult, out TSuccess>(out TResult result);
Parameters
result
TResultThe 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
TResult
The type of the out result value of the method that this function delegate encapsulates.
TSuccess
The type of the return value that indicates success of the method that this function delegate encapsulates.