Half.Round メソッド

定義

オーバーロード

Round(Half)

既定の丸めモード (ToEven) を使用して、値を最も近い整数に丸めます。

Round(Half, Int32)

既定の丸めモード (ToEven) を使用して、指定した桁数の小数部に値を丸めます。

Round(Half, MidpointRounding)

指定した丸めモードを使用して、値を最も近い整数に丸めます。

Round(Half, Int32, MidpointRounding)

既定の丸めモード (ToEven) を使用して、指定した桁数の小数部に値を丸めます。

Round(Half)

ソース:
Half.cs
ソース:
Half.cs
ソース:
Half.cs

既定の丸めモード (ToEven) を使用して、値を最も近い整数に丸めます。

public:
 static Half Round(Half x) = System::Numerics::IFloatingPoint<Half>::Round;
public static Half Round (Half x);
static member Round : Half -> Half
Public Shared Function Round (x As Half) As Half

パラメーター

x
Half

丸める値。

戻り値

既定の丸めモードを x 使用して最も近い整数に丸める結果。

実装

適用対象

Round(Half, Int32)

ソース:
Half.cs
ソース:
Half.cs
ソース:
Half.cs

既定の丸めモード (ToEven) を使用して、指定した桁数の小数部に値を丸めます。

public:
 static Half Round(Half x, int digits) = System::Numerics::IFloatingPoint<Half>::Round;
public static Half Round (Half x, int digits);
static member Round : Half * int -> Half
Public Shared Function Round (x As Half, digits As Integer) As Half

パラメーター

x
Half

丸める値。

digits
Int32

丸める必要がある x 小数部の桁数。

戻り値

既定の丸めモードを x 使用して小数部に digits 丸める結果。

実装

適用対象

Round(Half, MidpointRounding)

ソース:
Half.cs
ソース:
Half.cs
ソース:
Half.cs

指定した丸めモードを使用して、値を最も近い整数に丸めます。

public:
 static Half Round(Half x, MidpointRounding mode) = System::Numerics::IFloatingPoint<Half>::Round;
public static Half Round (Half x, MidpointRounding mode);
static member Round : Half * MidpointRounding -> Half
Public Shared Function Round (x As Half, mode As MidpointRounding) As Half

パラメーター

x
Half

丸める値。

mode
MidpointRounding

丸める x 必要があるモード。

戻り値

を使用してmode最も近い整数に丸めるx結果。

実装

適用対象

Round(Half, Int32, MidpointRounding)

ソース:
Half.cs
ソース:
Half.cs
ソース:
Half.cs

既定の丸めモード (ToEven) を使用して、指定した桁数の小数部に値を丸めます。

public:
 static Half Round(Half x, int digits, MidpointRounding mode) = System::Numerics::IFloatingPoint<Half>::Round;
public static Half Round (Half x, int digits, MidpointRounding mode);
static member Round : Half * int * MidpointRounding -> Half
Public Shared Function Round (x As Half, digits As Integer, mode As MidpointRounding) As Half

パラメーター

x
Half

丸める値。

digits
Int32

丸める必要がある x 小数部の桁数。

mode
MidpointRounding

丸める x 必要があるモード。

戻り値

を使用してmode小数部にdigits丸めるx結果。

実装

適用対象