Char.IsAsciiHexDigitLower(Char) 方法

定义

指示字符是否归类为 ASCII 小写六角形数字。

public:
 static bool IsAsciiHexDigitLower(char c);
public static bool IsAsciiHexDigitLower (char c);
static member IsAsciiHexDigitLower : char -> bool
Public Shared Function IsAsciiHexDigitLower (c As Char) As Boolean

参数

c
Char

要计算的字符。

返回

true 如果 c 是小写六边形数字,则为 ;否则为 false

注解

这将确定字符是介于“0”到“9”之间(含)还是“a”到“f”(含)。

适用于