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