MathNRoundTNumeric(TNumeric, Int32, MidpointRounding) Method

Rounds a value to a specified number of fractional digits, 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,
	int digits,
	MidpointRounding mode
)
where TNumeric : struct, new(), INumeric<TNumeric>

Parameters

x  TNumeric
 
digits  Int32
The number of fractional digits in the return value.
mode  MidpointRounding
 

Type Parameters

TNumeric

Return Value

TNumeric
The number nearest to value that contains a number of fractional digits equal to digits.

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