Char.IsAsciiHexDigit(Char) Metodo

Definizione

Indica se un carattere è classificato come cifra esadecimale ASCII.

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

Parametri

c
Char

Carattere da valutare.

Restituisce

true se c è una cifra esadecimale; in caso contrario, false.

Commenti

Questo metodo determina se il carattere è compreso nell'intervallo tra '0' e '9', inclusivo, 'A' fino a 'F', inclusivo o 'a' fino a 'f', inclusivo.

Si applica a