UnicodeCharacters.GetCodepointFromSurrogatePair(UInt32, UInt32) Metodo

Definizione

Restituisce il carattere Unicode supplementare per la coppia surrogata alta e bassa specificata.

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

Parametri

highSurrogate
UInt32

unsigned int

uint32_t

Valore surrogato elevato. Deve trovarsi nell'intervallo corretto: 0xD800 <= highSurrogate<= 0xDBFF.

lowSurrogate
UInt32

unsigned int

uint32_t

Valore surrogato basso. Deve trovarsi nell'intervallo corretto: 0xDC00 <= lowSurrogate<= 0xDFFF.

Restituisce

UInt32

unsigned int

uint32_t

Carattere Unicode supplementare.

Si applica a

Vedi anche