Bridge

Decimal..::..Multiply Method

Multiplies two specified Decimal values.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[TemplateAttribute]
public static decimal Multiply(
	decimal d1,
	decimal d2
)
<TemplateAttribute> _
Public Shared Function Multiply ( _
	d1 As Decimal, _
	d2 As Decimal _
) As Decimal
[TemplateAttribute]
public:
static Decimal^ Multiply(
	Decimal^ d1, 
	Decimal^ d2
)

Parameters

d1
Type: System..::..Decimal
The multiplicand.
d2
Type: System..::..Decimal
The multiplier.

Return Value

The result of multiplying d1 and d2.

Exceptions


ExceptionCondition
System..::..OverflowExceptionThe return value is less than MinValue or greater than MaxValue.