MoneyAddition(Money, Money) Operator

Adds two values together to compute their sum.

Definition

Namespace: InnerDrive.Financial
Assembly: InnerDrive.Financial (in InnerDrive.Financial.dll) Version: 5.2.9017.0
C#
public static Money operator +(
	Money left,
	Money b
)

Parameters

left  Money
The value to which right is added.
b  Money
 

Return Value

Money
The sum of left and right.

Implements

IAdditionOperatorsTSelf, TOther, TResultAddition(TSelf, TOther)

Exceptions

InvalidOperationExceptionThrown if the two Money values are denominated in different currencies.

See Also