Decimal.Multiply Operator (Decimal, Decimal)
.NET Framework (current version)
Multiplies two specified Decimal values.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- d1
-
Type:
System.Decimal
The first value to multiply.
- d2
-
Type:
System.Decimal
The second value to multiply.
| Exception | Condition |
|---|---|
| OverflowException |
The Multiply method defines the operation of the multiplication operator for Decimal values. It enables code such as the following:
using System; public class Example { public static void Main() { Decimal number1 = 16.8m; Decimal number2 = 4.1m; Decimal number3 = number1 * number2; Console.WriteLine("{0:N2} x {1:N2} = {2:N2}", number1, number2, number3); } } // The example displays the following output: // 16.80 x 4.10 = 68.88
If the language you're using doesn't support custom operators, call the Multiply 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: