Divides two Decimal values and produces a Decimal result.
[Visual Basic] Public Shared Function Multiply( _ ByVal d1 As Decimal, _ ByVal d2 As Decimal _ ) As Decimal [C#] public static Decimal Multiply( Decimal d1, Decimal d2 ); [C++] public: static Decimal Multiply( Decimal d1, Decimal d2 ); [JScript] public static function Multiply( d1 : Decimal, d2 : Decimal ) : Decimal;
The result of multiplying two Decimal values.
Exception Type | Condition |
---|---|
OverflowException | is thrown if the result is too large to represent as a Decimal. |
The Multiply method performs the arithmetic multiplication operation evaluating two Decimal values (d1 * d2) and returns the results.