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

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