Addition Operator (XPRBterm, XPRBexpr)
Add an XPRBterm to an XPRBexpr.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 37.1.1.0

Parameters
- t
-
Type:
BCLXPRBterm
The XPRBterm to add. - l1
-
Type:
BCLXPRBexpr
The XPRBexpr to add to.
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 = term+exp;
