UnicodeCharacters.IsIdContinue(UInt32) 方法

定义

确定指定的 Unicode 字符是否可以在编程中被视为标识符的延续字符。

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

参数

codepoint
UInt32

unsigned int

uint32_t

一个 Unicode 字符。 这必须处于适当的范围内:0 <= codepoint<= 0x10FFFF。

返回

Boolean

bool

如果 codepoint 在编程中是标识符的延续字符,则为 TRUE;否则为 FALSE

适用于

另请参阅