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

Parameters
- lhs
-
Type:
BCLXPRBsos
The XPRBsos to be added to. - rhs
-
Type:
BCLXPRBexpr
The XPRBexpr to add.
Return Value
Type: XPRBsosThe resultant XPRBsos.

XPRBvar var = new XPRBvar("Variable1"); XPRBexpr exp = new XPRBexpr(2.2*var); XPRBsos sos = new XPRBsos(); ... sos = sos+exp;
