Adds a real value to the instance. Something like a += operator.

Namespace: TPSA
Assembly: TPSA (in TPSA.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public TPSA Plus(
	double b
)
Visual Basic
Public Function Plus ( _
	b As Double _
) As TPSA
Visual C++
public:
TPSA^ Plus(
	double b
)

Parameters

b
Type: System..::..Double
The double value to be added to the instance.

Return Value

Itself.

Remarks

Does not create any new objects, but modifies the instance.

See Also