Returns true is c is a hexadecimal digit (A-F, a-f, 0-9)
public static bool IsHexDigit(
char c
)
Public Shared Function IsHexDigit( _
ByVal c As Char _
) As Boolean
public:
static bool IsHexDigit(
char c
);
Parameters
- c
- Character to test
Return Value
true if hex digit, false if not