// This Source Code is partially based on the source code provided by the .NET Foundation.
// ReSharper disable once CheckNamespace
namespace WPFluent.Controls;
///
/// An interface that returns a string representation of a provided value, using distinct format methods to format
/// several data types.
///
public interface INumberFormatter
{
///
/// Returns a string representation of a value.
///
string FormatDouble(double? value);
///
/// Returns a string representation of an value.
///
string FormatInt(int? value);
///
/// Returns a string representation of a value.
///
string FormatUInt(uint? value);
}