|
| static char | ByteToASCII (byte b) |
| | Convert byte to ASCII character More...
|
| |
| static byte [] | HexToArray (string hex) |
| | Convert hexadecimal string to byte array More...
|
| |
| static string | ArrayToHex (byte[] array, string space) |
| | Convert byte array to hexadecimal string More...
|
| |
| static string | ArrayToHex (byte[] array) |
| | Convert byte array to hexadecimal string More...
|
| |
| static string | ByteToHex (byte value) |
| | Represent byte as two-digit hexadecimal value. More...
|
| |
| static string | ByteArrayToHex (byte[] array) |
| | Represent bytes as hexadecimal string More...
|
| |
| static byte [] | HexToByteArray (string hex) |
| | Convert hex to byte array More...
|
| |
| static byte [] | HexToByteArray (string hex, string[] prefix) |
| | Convert hex to byte array More...
|
| |
| static string | IntegerToHex (int value, int size, bool uppperCase) |
| |
| static string | IntegerToHex (int value) |
| |
| static string | IntegerToHex (int value, bool uppperCase) |
| |
| static string | IntegerToHex (int value, int size) |
| |
| static ulong | Parse (string hex) |
| | Parse hexadecimal string up to 64-bit value More...
|
| |
| static string | Print (byte[] array, PrintFormatSettings printFormatSettings) |
| | Pretty print byte array in hexadecimal form More...
|
| |
| static string | Print (byte[] array, int lineSize, int groupSize, bool upperCase, int wordSize, int offsetSize, string representationMode, string elementSeparator, string groupSeparator, string offsetSeparator, string representationSeparator) |
| | Pretty print byte array in hexadecimal form More...
|
| |
| static string | Print (byte[] array, int lineSize, int groupSize, int offsetSize, int wordSize, bool representation) |
| | Pretty print byte array in hexadecimal form More...
|
| |
| static string | Print (byte[] array, int lineSize, int groupSize, bool representation) |
| | Pretty print byte array in hexadecimal form More...
|
| |
| static string | Print (byte[] array, int lineSize, int groupSize) |
| | Pretty print byte array in hexadecimal form with text represenation More...
|
| |
| static string | Print (byte[] array, int lineSize) |
| | Pretty print byte array in hexadecimal form with text represenation More...
|
| |
| static string | Print (byte[] array) |
| | Pretty print byte array in hexadecimal form with text represenation More...
|
| |
| static string | GetRandomHex (int length) |
| | Generate random hexadecimal number. More...
|
| |
| static string | Random () |
| | Generate random hexadecimal number. More...
|
| |
| static bool | IsHex (string value, string[] prefixArray, bool removeWhite) |
| | Check if text is a hexadecimal number string. More...
|
| |
| static bool | IsHex (string value, string[] prefixArray) |
| | Check if text is a hexadecimal number string. More...
|
| |
| static bool | IsHex (string value) |
| | Check if text is a hexadecimal number string. More...
|
| |