DecimalFormatter.Format Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Format(Double) |
Returns a string representation of a Double number. |
Format(Int64) |
Returns a string representation of an Int64 number. |
Format(UInt64) |
Returns a string representation of a UInt64 number. |
Format(Double)
Returns a string representation of a Double number.
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
Parameters
- value
-
Double
double
The Double value to be formatted.
Returns
A string that represents the number.
Implements
- Attributes
See also
Applies to
Format(Int64)
Returns a string representation of an Int64 number.
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
Parameters
- value
-
Int64
long long
long
The Int64 value to be formatted.
Returns
A string that represents the number.
Implements
- Attributes
See also
Applies to
Format(UInt64)
Returns a string representation of a UInt64 number.
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
Parameters
- value
-
UInt64
unsigned long long
uint64_t
The UInt64 value to be formatted.
Returns
A string that represents the number.
Implements
- Attributes