Initializing help system before first use

Addition Operator (XPRBsos, XPRBexpr)

Add an XPRBexpr to an XPRBsos.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public static XPRBsos operator +(
	XPRBsos lhs,
	XPRBexpr rhs
)

Parameters

lhs
Type:  BCLXPRBsos
The XPRBsos to be added to.
rhs
Type:  BCLXPRBexpr
The XPRBexpr to add.

Return Value

Type:  XPRBsos
The resultant XPRBsos.
Examples
XPRBvar var = new XPRBvar("Variable1"); XPRBexpr exp = new XPRBexpr(2.2*var); XPRBsos sos = new XPRBsos(); ... sos = sos+exp;
See Also