Initializing help system before first use

Addition Operator (XPRBexpr, XPRBsos)

Note: This API is now obsolete.

Add an XPRBexpr to an XPRBsos.

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

Parameters

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

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 = exp+sos;
See Also