This topic has not yet been rated - Rate this topic

Decimal.Round Method (Decimal, Int32, MidpointRounding)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Rounds a decimal value to a specified precision. A parameter specifies how to round the value if it is midway between two other numbers.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)
public static decimal Round(
	decimal d,
	int decimals,
	MidpointRounding mode
)

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.Decimal
The 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.

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)