IFloatingPoint<TSelf>.Round Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
Round(TSelf) |
Rundet einen Wert mithilfe des Standardrundungsmodus (ToEven) auf die nächste ganze Zahl. |
Round(TSelf, Int32) |
Rundet einen Wert mit dem Standardrundungsmodus (ToEven) auf eine angegebene Anzahl von Bruchstellen. |
Round(TSelf, MidpointRounding) |
Rundet einen Wert mithilfe des angegebenen Rundungsmodus auf die nächste ganze Zahl. |
Round(TSelf, Int32, MidpointRounding) |
Rundet einen Wert mithilfe des angegebenen Rundungsmodus auf eine angegebene Anzahl von Bruchstellen. |
Round(TSelf)
- Quelle:
- IFloatingPoint.cs
- Quelle:
- IFloatingPoint.cs
- Quelle:
- IFloatingPoint.cs
Rundet einen Wert mithilfe des Standardrundungsmodus (ToEven) auf die nächste ganze Zahl.
public:
static override TSelf Round(TSelf x);
public static virtual TSelf Round (TSelf x);
static member Round : 'Self -> 'Self
Public Shared Overrides Function Round (x As TSelf) As TSelf
Parameter
- x
- TSelf
Hierbei handelt es sich um den zu rundenden Wert.
Gibt zurück
Das Ergebnis der Rundung x
auf die nächste ganze Zahl im Standardrundungsmodus.
Gilt für:
Round(TSelf, Int32)
- Quelle:
- IFloatingPoint.cs
- Quelle:
- IFloatingPoint.cs
- Quelle:
- IFloatingPoint.cs
Rundet einen Wert mit dem Standardrundungsmodus (ToEven) auf eine angegebene Anzahl von Bruchstellen.
public:
static override TSelf Round(TSelf x, int digits);
public static virtual TSelf Round (TSelf x, int digits);
static member Round : 'Self * int -> 'Self
Public Shared Overrides Function Round (x As TSelf, digits As Integer) As TSelf
Parameter
- x
- TSelf
Hierbei handelt es sich um den zu rundenden Wert.
- digits
- Int32
Die Anzahl der Bruchstellen, auf die x
gerundet werden soll.
Gibt zurück
Das Ergebnis der Rundung x
auf digits
Bruchstellen im Standardrundungsmodus.
Gilt für:
Round(TSelf, MidpointRounding)
- Quelle:
- IFloatingPoint.cs
- Quelle:
- IFloatingPoint.cs
- Quelle:
- IFloatingPoint.cs
Rundet einen Wert mithilfe des angegebenen Rundungsmodus auf die nächste ganze Zahl.
public:
static override TSelf Round(TSelf x, MidpointRounding mode);
public static virtual TSelf Round (TSelf x, MidpointRounding mode);
static member Round : 'Self * MidpointRounding -> 'Self
Public Shared Overrides Function Round (x As TSelf, mode As MidpointRounding) As TSelf
Parameter
- x
- TSelf
Hierbei handelt es sich um den zu rundenden Wert.
- mode
- MidpointRounding
Der Modus, in dem x
gerundet werden soll.
Gibt zurück
Das Ergebnis der Rundung x
auf die nächste ganze Zahl mit mode
.
Gilt für:
Round(TSelf, Int32, MidpointRounding)
- Quelle:
- IFloatingPoint.cs
- Quelle:
- IFloatingPoint.cs
- Quelle:
- IFloatingPoint.cs
Rundet einen Wert mithilfe des angegebenen Rundungsmodus auf eine angegebene Anzahl von Bruchstellen.
public:
static TSelf Round(TSelf x, int digits, MidpointRounding mode);
public static abstract TSelf Round (TSelf x, int digits, MidpointRounding mode);
static member Round : 'Self * int * MidpointRounding -> 'Self
Public Shared Function Round (x As TSelf, digits As Integer, mode As MidpointRounding) As TSelf
Parameter
- x
- TSelf
Hierbei handelt es sich um den zu rundenden Wert.
- digits
- Int32
Die Anzahl der Bruchstellen, auf die x
gerundet werden soll.
- mode
- MidpointRounding
Der Modus, in dem x
gerundet werden soll.
Gibt zurück
Das Ergebnis der Rundung x
auf digits
Bruchstellen mit mode
.