IsUpper()

Char::IsUpper(const String&, int) method

Determines whether the character at the specified index in the specified string is classified as an upper case letter.

static bool System::Char::IsUpper(const String &str, int idx)

Arguments

ParameterTypeDescription
strconst String&The string containing a char.
idxintA zero-based index in the specified string to test

Return Value

True if the character at the specified index is an upper case letter, otherwise - false

Char::IsUpper(const char_t *, int) method

Determines whether the character at the specified index in the specified character buffer is classified as an upper case letter.

static bool System::Char::IsUpper(const char_t *str, int idx)

Arguments

ParameterTypeDescription
strconst char_t *Pointer to the beginning of the character buffer
idxintA zero-based index in the specified buffer of the character to test

Return Value

True if the character at the specified index is an upper case letter, otherwise - false

Char::IsUpper(char_t) method

Determines whether the specified character is classified as an upper case letter.

static bool System::Char::IsUpper(char_t c)

Arguments

ParameterTypeDescription
cchar_tThe character to test

Return Value

True if the specified character is an upper case letter, otherwise - false

See Also