Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Decimal::Divide Method (Decimal, Decimal)

 

Divides two specified Decimal values.

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

public:
static Decimal Divide(
	Decimal d1,
	Decimal d2
)

Parameters

d1
Type: System::Decimal

The dividend.

d2
Type: System::Decimal

The divisor.

Return Value

Type: System::Decimal

The result of dividing d1 by d2.

Exception Condition
DivideByZeroException

d2 is zero.

OverflowException

The return value (that is, the quotient) is less than MinValue or greater than MaxValue.

The following example calls the Divide method to divide a range of values by 22.1.

No code example is currently available or this language may not be supported.

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
Return to top
Show:
© 2017 Microsoft