Delegate TesterFunc<T, TResult, TSuccess>
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.
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public delegate TSuccess TesterFunc<in T, TResult, out TSuccess>(T arg, out TResult result);
Parameters
| Type | Name | Description |
|---|---|---|
| T | arg | The parameter of the method that this function delegate encapsulates. |
| TResult | result | The result of the method that this function delegate encapsulates. |
Returns
| Type | Description |
|---|---|
| TSuccess | The return value that indicates success of the method that this function delegate encapsulates. |
Type Parameters
| Name | Description |
|---|---|
| T | The type of the parameter of the method that this function delegate encapsulates. |
| 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. |