UnicodeCharacters.GetCodepointFromSurrogatePair(UInt32, UInt32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 상위 및 하위 서로게이트 쌍에 대한 보조 유니코드 문자를 반환합니다.
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
매개 변수
- highSurrogate
-
UInt32
unsigned int
uint32_t
높은 서로게이트 값입니다. 0xD800 = highSurrogate<= 0xDBFF <적절한 범위에 있어야 합니다.
- lowSurrogate
-
UInt32
unsigned int
uint32_t
낮은 서로게이트 값입니다. 0xDC00 = lowSurrogate<= 0xDFFF <적절한 범위에 있어야 합니다.
반환
보조 유니코드 문자입니다.