Decimal::Round Method (Decimal, Int32, MidpointRounding)
Rounds a decimal value to a specified precision. A parameter specifies how to round the value if it is midway between two other numbers.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- d
- Type: System::Decimal
A decimal number to round.
- decimals
- Type: System::Int32
The number of significant decimal places (precision) in the return value.
- mode
- Type: System::MidpointRounding
A value that specifies how to round d if it is midway between two other numbers.
Return Value
Type: System::DecimalThe number that is nearest to the d parameter with a precision equal to the decimals parameter. If d is halfway between two numbers, one of which is even and the other odd, the mode parameter determines which of the two numbers is returned. If the precision of d is less than decimals, d is returned unchanged.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | decimals is less than 0 or greater than 28. |
| ArgumentException | mode is not a System::MidpointRounding value. |
| OverflowException | The result is outside the range of a Decimal object. |
The decimals parameter specifies the number of significant decimal places in the return value and ranges from 0 to 28. If decimals is zero, an integer is returned.
The behavior of this method follows IEEE Standard 754, section 4. This kind of rounding is sometimes called rounding to nearest or banker's rounding. If decimals is zero, this kind of rounding is sometimes called rounding toward zero.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.