Spread WPF 17
GrapeCity.CalcEngine.Operators Namespace / CalcOperator Class / Equality Operator
The operator on the left side of the equality operator.
The operator on the right side of the equality operator.


In This Topic
    Equality Operator (CalcOperator)
    In This Topic
    Tests whether two operator structures are equal.
    Syntax
    'Declaration
     
    Public Operator =( _
       ByVal left As CalcOperator, _
       ByVal right As CalcOperator _
    ) As Boolean
    'Usage
     
    
    public bool operator ==( 
       CalcOperator left,
       CalcOperator right
    )

    Parameters

    left
    The operator on the left side of the equality operator.
    right
    The operator on the right side of the equality operator.

    Return Value

    true if two operator are equal; otherwise, false.
    See Also