UnicodeCharacters.GetCodepointFromSurrogatePair(UInt32, UInt32) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne le caractère Unicode supplémentaire pour la paire de substitution haute et basse spécifiée.
public:
static unsigned int GetCodepointFromSurrogatePair(unsigned int highSurrogate, unsigned int lowSurrogate);
static uint32_t GetCodepointFromSurrogatePair(uint32_t const& highSurrogate, uint32_t const& lowSurrogate);
public static uint GetCodepointFromSurrogatePair(uint highSurrogate, uint lowSurrogate);
function getCodepointFromSurrogatePair(highSurrogate, lowSurrogate)
Public Shared Function GetCodepointFromSurrogatePair (highSurrogate As UInteger, lowSurrogate As UInteger) As UInteger
Paramètres
- highSurrogate
-
UInt32
unsigned int
uint32_t
Valeur de substitution élevée. Il doit s’agir de la plage appropriée : 0xD800 <= highSurrogate<= 0xDBFF.
- lowSurrogate
-
UInt32
unsigned int
uint32_t
Valeur de substitution faible. Il doit s’agir de la plage appropriée : 0xDC00 <= lowSurrogate<= 0xDFFF.
Retours
Caractère Unicode supplémentaire.