UnicodeCharacters.IsIdContinue(UInt32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines if a specified Unicode character can be considered a continuation character of an identifier in programming.
public:
static bool IsIdContinue(unsigned int codepoint);
static bool IsIdContinue(uint32_t const& codepoint);
public static bool IsIdContinue(uint codepoint);
function isIdContinue(codepoint)
Public Shared Function IsIdContinue (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 continuation character of an identifier in programming; otherwise FALSE.