Compartilhar via


UnicodeCharacters.GetSurrogatePairFromCodepoint(UInt32, Char, Char) Método

Definição

Retorna os valores de par alternativo alto e baixo para o caractere Unicode suplementar especificado.

public:
 static void GetSurrogatePairFromCodepoint(unsigned int codepoint, [Out] char16 & highSurrogate, [Out] char16 & lowSurrogate);
 static void GetSurrogatePairFromCodepoint(uint32_t const& codepoint, [Out] char16_t & highSurrogate, [Out] char16_t & lowSurrogate);
public static void GetSurrogatePairFromCodepoint(uint codepoint, out char highSurrogate, out char lowSurrogate);
Public Shared Sub GetSurrogatePairFromCodepoint (codepoint As UInteger, ByRef highSurrogate As Char, ByRef lowSurrogate As Char)

Parâmetros

codepoint
UInt32

unsigned int

uint32_t

Um caractere Unicode. Isso deve estar no intervalo adequado: 0 <= codepoint<= 0x10FFFF.

highSurrogate
Char

char16

char16_t

O valor alternativo alto retornado.

lowSurrogate
Char

char16

char16_t

O valor alternativo baixo retornado.

Comentários

Consulte Substitutos e Caracteres Suplementares para obter uma discussão sobre caracteres Unicode suplementares.

Aplica-se a

Confira também