INumberFormatter.Format Méthode

Définition

Surcharges

Format(Double)

Retourne une représentation sous forme de chaîne d’une valeur Double .

Format(Int64)

Retourne une représentation sous forme de chaîne d’une valeur Int64 .

Format(UInt64)

Renvoie une représentation sous forme de chaîne d’une valeur UInt64 .

Format(Double)

Retourne une représentation sous forme de chaîne d’une valeur Double .

public:
 Platform::String ^ Format(double value);
/// [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

String

Platform::String

winrt::hstring

Chaîne qui représente la valeur.

Attributs

Voir aussi

S’applique à

Format(Int64)

Retourne une représentation sous forme de chaîne d’une valeur Int64 .

public:
 Platform::String ^ Format(long long value);
/// [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

String

Platform::String

winrt::hstring

Chaîne qui représente la valeur.

Attributs

Voir aussi

S’applique à

Format(UInt64)

Renvoie une représentation sous forme de chaîne d’une valeur UInt64 .

public:
 Platform::String ^ Format(unsigned long long value);
/// [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

String

Platform::String

winrt::hstring

Chaîne qui représente la valeur.

Attributs

Voir aussi

S’applique à