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