Partager via


UnicodeCharacters.GetCodepointFromSurrogatePair(UInt32, UInt32) Méthode

Définition

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

UInt32

unsigned int

uint32_t

Caractère Unicode supplémentaire.

S’applique à

Voir aussi