Char.IsAsciiHexDigitLower(Char) 方法     
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示字符是否归类为 ASCII 小写六角形数字。
public:
 static bool IsAsciiHexDigitLower(char c);public static bool IsAsciiHexDigitLower(char c);static member IsAsciiHexDigitLower : char -> boolPublic Shared Function IsAsciiHexDigitLower (c As Char) As Boolean参数
- c
- Char
要计算的字符。
返回
              true 如果 c 是小写六边形数字,则为 ;否则为 false。
注解
这将确定字符是介于“0”到“9”之间(含)还是“a”到“f”(含)。