Interface INumberFormatter
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
FormatInt(int?)
Returns a string representation of an int value.
string FormatInt(int? value)
Parameters
value
int?
Returns
FormatUInt(uint?)
Returns a string representation of a uint value.
string FormatUInt(uint? value)
Parameters
value
uint?