UnicodeCharacters.GetCodepointFromSurrogatePair(UInt32, UInt32) Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
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
Carácter Unicode complementario.