GetNumericValue()

CharUnicodeInfo::GetNumericValue(char16_t) method

Gets numeric value associated with the specified character.

static double System::Globalization::CharUnicodeInfo::GetNumericValue(char16_t ch)

Arguments

ParameterTypeDescription
chchar16_tUnicode character.

Return Value

The numeric value or -1 if the specified character is not a numeric character.

CharUnicodeInfo::GetNumericValue(const String&, int) method

Gets numeric value associated with the character at the specified index of the string.

static double System::Globalization::CharUnicodeInfo::GetNumericValue(const String &str, int index)

Arguments

ParameterTypeDescription
strconst String&The string containing unicode character.
indexintThe index of the unicode character.

Return Value

The numeric value or -1 if the specified character is not a numeric character.

See Also