Determines whether the specified char is a hex digit, that is it is between 0..9..F

Namespace: LLCryptoLib.Utils
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public static bool IsHexDigit(
	char c
)
Visual Basic
Public Shared Function IsHexDigit ( _
	c As Char _
) As Boolean
Visual C++
public:
static bool IsHexDigit(
	wchar_t c
)

Parameters

c
Type: System..::..Char
The character

Return Value

true if c is hex digit; otherwise, false.

See Also