Addition Operator
Add an XPRBexpr to an XPRBcut.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.14.0

Parameters
- lhs
-
Type:
BCLXPRBcut
The XPRBcut to add to. - l
-
Type:
BCLXPRBexpr
The XPRBexpr to add.
Return Value
Type: XPRBcutThe resultant XPRBcut.

XPRBcut cut = new XPRBcut(); XPRBvar var = new XPRBvar("Variable"); XPRBexpr exp = new XPRBexpr(3.2 + 9.6*var); ... cut = cut+exp;
