Mass.Addition(Mass, Double) Operator

Adds two values together to compute their sum.

Definition

Namespace: InnerDrive.Quantitative
Assembly: InnerDrive.Quantitative (in InnerDrive.Quantitative.dll) Version: 5.2.9017.0
C#
public static Mass operator +(
	Mass left,
	double right
)

Parameters

left  Mass
The value to which right is added.
right  Double
The value which is added to left.

Return Value

Mass
The sum of left and right.

Implements

IAdditionOperators<TSelf, TOther, TResult>.Addition(TSelf, TOther)

See Also