Multiply Operator (XPRBterm, XPRBexpr)
Multiply an XPRBexpr and an XPRBterm
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.14.0

Parameters
- e1
-
Type:
BCLXPRBterm
The first expression to multiply - e2
-
Type:
BCLXPRBexpr
The second expression to multiply.
Return Value
Type: XPRBexprThe resultant XPRBexpr.

XPRBvar var = new XPRBvar("Variable1"); XPRBvar var2 = new XPRBvar("Variable2"); XPRBterm term = new XPRBterm(9.7, var); XPRBexpr exp = new XPRBexpr(var + 3.6*var2); XPRBexpr expnew; ... expnew = exp*term;
