Delegate Operator<T, R>
A delegate representing unary operator.
Namespace: DotNext.Reflection
Assembly: DotNext.Reflection.dll
Syntax
public delegate R Operator<T, out R>(in T operand);
Parameters
| Type | Name | Description |
|---|---|---|
| T | operand | Operand. |
Returns
| Type | Description |
|---|---|
| R | Result of unary operation. |
Type Parameters
| Name | Description |
|---|---|
| T | Type of operand. |
| R | Type of operator result. |