Returns the string form of this ExprBinary.
Namespace: Endeca.Navigation.AnalyticsAssembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.3.0.0 (6.3.0.853)
Syntax
| C# |
|---|
public override string ToString() |
| Visual Basic |
|---|
Public Overrides Function ToString As String |
| Visual C++ |
|---|
public: virtual String^ ToString() override |
Return Value
The string form of this ExprBinary.Implements
IQueryNode..::..ToString()()()()
Remarks
The format for the DIVIDE, MINUS, MULTIPLY, and PLUS operators is:
CopyC#
where sign is / (for DIVIDE), - (for MINUS), * (for
MULTIPY), or + (for PLUS).
"<i>lhs-expression</i><i>sign</i><i>rhs-expression</i>"
The format for the other operators is:
CopyC#
where op is LOG, MOD, POWER, BROUND, or BTRUNC.
"<i>op</i>(<i>lhs-expression</i>, <i>rhs-expression</i>)"