VOOZH about

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

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


  • Courses
  • Tutorials
  • Interview Prep

Decimal.Add() Method in C#

Last Updated : 29 Jan, 2019
This method is used to add two specified decimal values.
Syntax: public static decimal Add (decimal a1, decimal a2); Parameters: a1: This parameter specifies the first value to add. a2: This parameter specifies the second value to add. Return Value: Decimal sum of a1 & a2.
Exceptions: This method will give OverflowException if the sum of a1 and a2 is less than smallest possible value of Decimal or greater than the largest possible value of Decimal. Below programs illustrate the use of Decimal.Add(Decimal, Decimal) Method Example 1:
Output:
Decimal Sum : 0.04
Example 2: For OverflowException
Output:
Exception Thrown: System.OverflowException
Comment
Article Tags:

Explore