FarPoint.CalcEngine Assembly / FarPoint.CalcEngine Namespace / BinaryOperatorExpression Class / BinaryOperatorExpression Constructor
Operator
Left-side operand
Right-side operand


BinaryOperatorExpression Constructor
Creates a new expression with a binary operator applied to a pair of operands.
Syntax
'Declaration
 
Public Function New( _
   ByVal oper As BinaryOperatorInfo, _
   ByVal arg0 As Expression, _
   ByVal arg1 As Expression _
)
 
'Usage
 
Dim oper As BinaryOperatorInfo
Dim arg0 As Expression
Dim arg1 As Expression
 
Dim instance As New BinaryOperatorExpression(oper, arg0, arg1)

Parameters

oper
Operator
arg0
Left-side operand
arg1
Right-side operand
Exceptions
ExceptionDescription
oper or arg0 or arg1 is a null reference (Nothing in Visual Basic)
See Also