PermilleFormatter.Format Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
Format(Double) |
Restituisce una rappresentazione di stringa di un valore Double permillage. |
Format(Int64) |
Restituisce una rappresentazione di stringa di un int64 permillage. |
Format(UInt64) |
Restituisce una rappresentazione di stringa di un valore UInt64 permillage. |
Format(Double)
Restituisce una rappresentazione di stringa di un valore Double permillage.
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
Parametri
- value
-
Double
double
Valore Double da formattare.
Restituisce
Stringa che rappresenta il permillage.
Implementazioni
- Attributi
Vedi anche
Si applica a
Format(Int64)
Restituisce una rappresentazione di stringa di un int64 permillage.
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
Parametri
- value
-
Int64
long long
long
Valore Int64 da formattare.
Restituisce
Stringa che rappresenta il permillage.
Implementazioni
- Attributi
Vedi anche
Si applica a
Format(UInt64)
Restituisce una rappresentazione di stringa di un valore UInt64 permillage.
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
Parametri
- value
-
UInt64
unsigned long long
uint64_t
Valore UInt64 da formattare.
Restituisce
Stringa che rappresenta il permillage.
Implementazioni
- Attributi