Table of Contents

Interface INumberParser

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

An interface that parses a string representation of a numeric value.

public interface INumberParser

Methods

ParseDouble(string?)

Attempts to parse a string representation of a double numeric value.

double? ParseDouble(string? value)

Parameters

value string

Returns

double?

ParseInt(string?)

Attempts to parse a string representation of an int numeric value.

int? ParseInt(string? value)

Parameters

value string

Returns

int?

ParseUInt(string?)

Attempts to parse a string representation of an uint numeric value.

uint? ParseUInt(string? value)

Parameters

value string

Returns

uint?