Addition Operator (XPRBsos, XPRBexpr)
  Add an XPRBexpr to an XPRBsos. 
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.14.0
 Syntax
Syntax
Parameters
- lhs
- 
   Type: 
   BCLXPRBsos
   
 The XPRBsos to be added to.
- rhs
- 
   Type: 
   BCLXPRBexpr
   
 The XPRBexpr to add.
Return Value
Type: XPRBsosThe resultant XPRBsos.
 Examples
Examples
  XPRBvar var = new XPRBvar("Variable1"); XPRBexpr exp = new XPRBexpr(2.2*var); XPRBsos sos = new XPRBsos(); ... sos = sos+exp; 
 See Also
See Also
 
