UnicodeCharacters.IsLowSurrogate(UInt32) Method

Definition

Determines if a specified Unicode character is a low surrogate.

public:
 static bool IsLowSurrogate(unsigned int codepoint);
 static bool IsLowSurrogate(uint32_t const& codepoint);
public static bool IsLowSurrogate(uint codepoint);
function isLowSurrogate(codepoint)
Public Shared Function IsLowSurrogate (codepoint As UInteger) As Boolean

Parameters

codepoint
UInt32

unsigned int

uint32_t

A Unicode character. This must be in the proper range: 0 <= codepoint <= 0x10FFFF.

Returns

Boolean

bool

TRUE if codepoint is a low surrogate; otherwise FALSE.

Applies to

See also