Decimal.Addition Operator (Decimal, Decimal)
.NET Framework (current version)
Adds two specified Decimal values.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- d1
-
Type:
System.Decimal
The first value to add.
- d2
-
Type:
System.Decimal
The second value to add.
| Exception | Condition |
|---|---|
| OverflowException |
The Addition method defines the operation of the addition operator for Decimal values. It enables code such as the following:
using System; public class Example { public static void Main() { Decimal number1 = 120.07m; Decimal number2 = 163.19m; Decimal number3 = number1 + number2; Console.WriteLine("{0} + {1} = {2}", number1, number2, number3); } } // The example displays the following output: // 120.07 + 163.19 = 283.26
If the language you're using doesn't support custom operators, call the Add method instead.
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: