IsSortable()

CompareInfo::IsSortable(char16_t) method

Checks whether a specified character is sortable.

static bool System::Globalization::CompareInfo::IsSortable(char16_t ch)

Arguments

ParameterTypeDescription
chchar16_tUnicode character.

Return Value

True if ch is sortable; otherwise false.

CompareInfo::IsSortable(const String&) method

Checks whether a specified string is sortable.

static bool System::Globalization::CompareInfo::IsSortable(const String &text)

Arguments

ParameterTypeDescription
textconst String&A string.

Return Value

True if text is not empty and all characters in text are sortable; otherwise false.

See Also