MoneyMod Method

The modulus operator computes the remainder after dividing its first (Money) operand by its second (Decimal).

Definition

Namespace: InnerDrive.Financial
Assembly: InnerDrive.Financial (in InnerDrive.Financial.dll) Version: 5.2.9017.0
C#
public static Money Mod(
	Money value,
	decimal divisor
)

Parameters

value  Money
The Money to divide.
divisor  Decimal
The value to divide the Money by.

Return Value

Money
A new Money instance equal in value to a.Value % divisor.

See Also