Decimal::Modulus Operator (Decimal, Decimal)
.NET Framework (current version)
Returns the remainder resulting from dividing two specified Decimal values.
Assembly: mscorlib (in mscorlib.dll)
| Exception | Condition |
|---|---|
| DivideByZeroException | d2 is zero. |
| OverflowException |
The Modulus method defines the operation of the modulus operator for Decimal values. It enables code such as the following:
If the language you're using doesn't support custom operators, call the Remainder method instead.
The sign of the value return by the modulus operation depends on the sign of dividend. If dividend is positive, the modulus operation returns a positive result; if it is negative, the modulus operation returns a negative result.
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: