Spread Windows Forms 17
FarPoint.CalcEngine Assembly / FarPoint.CalcEngine Namespace / BinaryOperatorExpression Class / BinaryOperatorExpression Constructor
Operator
Left-side operand
Right-side operand


In This Topic
    BinaryOperatorExpression Constructor
    In This Topic
    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)
    public BinaryOperatorExpression( 
       BinaryOperatorInfo oper,
       Expression arg0,
       Expression 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