![]() |
VOOZH | about |
This method is used to multiply two specified decimal values.
Syntax: public static decimal Multiply (decimal a1, decimal a2);
Parameters:
a1: This parameter specifies the multiplicand.
a2: This parameter specifies the multiplier.
Return Value: The result of the multiplication of a1 & a2.
Exception: This method will give OverflowException if the return value is less than MinValue or greater than MaxValue.
Below programs illustrate the use of Decimal.Multiply(Decimal, Decimal) Method
Example 1:
Result of multiplication : 8.0802
Example 2: Program for OverflowException
Exception Thrown: System.OverflowException