Freigeben über


UnicodeCharacters.GetCodepointFromSurrogatePair(UInt32, UInt32) Methode

Definition

Gibt das zusätzliche Unicode-Zeichen für das angegebene Hohe und niedrige Ersatzpaar zurück.

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

Parameter

highSurrogate
UInt32

unsigned int

uint32_t

Der hohe Ersatzwert. Dies muss im richtigen Bereich liegen: 0xD800 <= highSurrogate<= 0xDBFF.

lowSurrogate
UInt32

unsigned int

uint32_t

Der niedrige Ersatzwert. Dies muss im richtigen Bereich liegen: 0xDC00 <= lowSurrogate<= 0xDFFF.

Gibt zurück

UInt32

unsigned int

uint32_t

Das zusätzliche Unicode-Zeichen.

Gilt für:

Weitere Informationen