VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/decimal-multiply-method-in-c-sharp/

⇱ Decimal.Multiply() Method in C# - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Decimal.Multiply() Method in C#

Last Updated : 6 Aug, 2021

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: 


Output: 
Result of multiplication : 8.0802

 

Example 2: Program for OverflowException


Output: 
Exception Thrown: System.OverflowException

 
Comment
Article Tags:

Explore