MathNRoundTNumeric(TNumeric) Method

Rounds a value to the nearest integral value, and rounds midpoint values to the nearest even number.

Definition

Namespace: Jodosoft.Numerics
Assembly: Jodosoft.Numerics (in Jodosoft.Numerics.dll) Version: 2.0
public static TNumeric Round<TNumeric>(
	TNumeric x
)
where TNumeric : struct, new(), INumeric<TNumeric>

Parameters

x  TNumeric
A number to be rounded.

Type Parameters

TNumeric

Return Value

TNumeric
The integer nearest the x parameter. If the fractional component of x is halfway between two integers, one of which is even and the other odd, the even number is returned.

Remarks

This method may return NaN or Infinity. If NaN or Infinity cannot be represented by TNumeric, then this method may throw an ArithmeticException.

See Also