// 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 parses a string representation of a numeric value.
///
public interface INumberParser
{
///
/// Attempts to parse a string representation of a numeric value.
///
double? ParseDouble(string value);
///
/// Attempts to parse a string representation of an numeric value.
///
int? ParseInt(string value);
///
/// Attempts to parse a string representation of an numeric value.
///
uint? ParseUInt(string value);
}