Compartir a través de


UnicodeCharacters.GetCodepointFromSurrogatePair(UInt32, UInt32) Método

Definición

Devuelve el carácter Unicode complementario para el par suplente alto y bajo especificado.

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

Parámetros

highSurrogate
UInt32

unsigned int

uint32_t

Valor suplente alto. Debe estar en el intervalo adecuado: 0xD800 <= highSurrogate<= 0xDBFF.

lowSurrogate
UInt32

unsigned int

uint32_t

Valor suplente bajo. Debe estar en el intervalo adecuado: 0xDC00 <= lowSurrogate<= 0xDFFF.

Devoluciones

UInt32

unsigned int

uint32_t

Carácter Unicode complementario.

Se aplica a

Consulte también