UnicodeCharacters.GetCodepointFromSurrogatePair(UInt32, UInt32) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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
Carattere Unicode supplementare.