Test additional content header

NumberAddition Operator

Adds two specified Number values.

Definition

Namespace: Fluent.Calculations.Primitives.BaseTypes
Assembly: Fluent.Calculations.Primitives (in Fluent.Calculations.Primitives.dll) Version: 1.1.0-aplha
public static Number operator +(
	Number left,
	Number right
)

Parameters

left  Number
The first value to add.
right  Number
The second value to add.

Return Value

Number
The result of adding left and right.

Implements

IAdditionOperatorsTSelf, TOther, TResultAddition(TSelf, TOther)

Remarks

The Add method defines the operation of the addition operator for Number values.

See Also