Table of Contents

Interface INumberFormatter

Namespace
Wpf.Ui.Controls
Assembly
Wpf.Ui.dll

An interface that returns a string representation of a provided value, using distinct format methods to format several data types.

public interface INumberFormatter

Methods

FormatDouble(double?)

Returns a string representation of a double value.

string FormatDouble(double? value)

Parameters

value double?

Returns

string

FormatInt(int?)

Returns a string representation of an int value.

string FormatInt(int? value)

Parameters

value int?

Returns

string

FormatUInt(uint?)

Returns a string representation of a uint value.

string FormatUInt(uint? value)

Parameters

value uint?

Returns

string