Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

INumberFormatter.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

Name Description
Format(Double)

Returns a string representation of a Double value.

Format(Int64)

Returns a string representation of an Int64 value.

Format(UInt64)

Returns a string representation of a UInt64 value.

Format(Double)

Returns a string representation of a Double value.

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

Parameters

value
Double

double

The Double value to be formatted.

Returns

String

Platform::String

winrt::hstring

A string that represents the value.

Attributes

See also

Applies to

Format(Int64)

Returns a string representation of an Int64 value.

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

Parameters

value
Int64

long long

long

The Int64 value to be formatted.

Returns

String

Platform::String

winrt::hstring

A string that represents the value.

Attributes

See also

Applies to

Format(UInt64)

Returns a string representation of a UInt64 value.

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

Parameters

value
UInt64

unsigned long long

uint64_t

The UInt64 value to be formatted.

Returns

String

Platform::String

winrt::hstring

A string that represents the value.

Attributes

See also

Applies to


Feedback

Was this page helpful?