Method | Description | |
---|---|---|
FromHex ( string value ) : char | ||
FromOct ( string value ) : char | ||
HexToInt ( char value ) : int |
Converts a hexadecimal character to its integer value.
|
|
IsHex ( char value ) : bool |
Test whether a character is a hexadecimal character.
|
|
IsOct ( char c ) : bool |
public static FromHex ( string value ) : char | ||
value | string | |
return | char |
public static FromOct ( string value ) : char | ||
value | string | |
return | char |
public static HexToInt ( char value ) : int | ||
value | char | The character to convert to an integer. |
return | int |
public static IsHex ( char value ) : bool | ||
value | char | The character to test. |
return | bool |