Delegate Operator<T1, T2, TResult>
Represents binary operator.
Namespace: DotNext.Reflection
Assembly: DotNext.Reflection.dll
Syntax
public delegate TResult Operator<T1, T2, out TResult>(in T1 first, in T2 second);
Parameters
| Type | Name | Description |
|---|---|---|
| T1 | first | First operand. |
| T2 | second | Second operand. |
Returns
| Type | Description |
|---|---|
| TResult | Result of binary operator. |
Type Parameters
| Name | Description |
|---|---|
| T1 | Type of first operand. |
| T2 | Type of second operand. |
| TResult | Type of operator result. |