Méthode System::Char::IsLowSurrogate

Char::IsLowSurrogate(char_t) method

Détermine si le caractère spécifié est un surrogat bas.

static bool System::Char::IsLowSurrogate(char_t c)
ParamètreTypeDescription
cchar_tLe caractère à tester

ReturnValue

Vrai si le caractère spécifié est un substituant bas, sinon - faux

Voir aussi

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

Détermine si le caractère à l’index spécifié dans le tampon de caractères spécifié est un surrogat bas.

static bool System::Char::IsLowSurrogate(const char_t *str, int idx)
ParamètreTypeDescription
strconst char_t *Pointeur vers le début du tampon de caractères
idxintUn indice basé sur zéro dans le tampon spécifié du caractère à tester

ReturnValue

Vrai si le caractère à l’index spécifié est un substituant bas, sinon - faux

Voir aussi