DecimalFormatter.Format Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Format(Double) |
Renvoie une représentation sous forme de chaîne d’un nombre double . |
Format(Int64) |
Retourne une représentation sous forme de chaîne d’un nombre Int64 . |
Format(UInt64) |
Retourne une représentation sous forme de chaîne d’un nombre UInt64 . |
Format(Double)
Renvoie une représentation sous forme de chaîne d’un nombre double .
public:
virtual Platform::String ^ Format(double value) = Format;
/// [Windows.Foundation.Metadata.DefaultOverload]
/// [Windows.Foundation.Metadata.Overload("FormatDouble")]
winrt::hstring Format(double const& value);
[Windows.Foundation.Metadata.DefaultOverload]
[Windows.Foundation.Metadata.Overload("FormatDouble")]
public string Format(double value);
function format(value)
Public Function Format (value As Double) As String
Paramètres
- value
-
Double
double
Valeur Double à mettre en forme.
Retours
Chaîne qui représente le nombre.
Implémente
- Attributs
Voir aussi
S’applique à
Format(Int64)
Retourne une représentation sous forme de chaîne d’un nombre Int64 .
public:
virtual Platform::String ^ Format(long long value) = Format;
/// [Windows.Foundation.Metadata.Overload("FormatInt")]
winrt::hstring Format(long const& value);
[Windows.Foundation.Metadata.Overload("FormatInt")]
public string Format(long value);
function format(value)
Public Function Format (value As Long) As String
Paramètres
- value
-
Int64
long long
long
Valeur Int64 à mettre en forme.
Retours
Chaîne qui représente le nombre.
Implémente
- Attributs
Voir aussi
S’applique à
Format(UInt64)
Retourne une représentation sous forme de chaîne d’un nombre UInt64 .
public:
virtual Platform::String ^ Format(unsigned long long value) = Format;
/// [Windows.Foundation.Metadata.Overload("FormatUInt")]
winrt::hstring Format(uint64_t const& value);
[Windows.Foundation.Metadata.Overload("FormatUInt")]
public string Format(ulong value);
function format(value)
Public Function Format (value As ULong) As String
Paramètres
- value
-
UInt64
unsigned long long
uint64_t
Valeur UInt64 à mettre en forme.
Retours
Chaîne qui représente le nombre.
Implémente
- Attributs