Returns the string form of this ExprBinary.


The string form of this ExprBinary.

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>)"