Method HexDump
HexDump(byte[], int)
Дампит содержимое массива в HEX виде Реализация взята отсюда http://www.codeproject.com/Articles/36747/Quick-and-Dirty-HexDump-of-a-Byte-Array
Declaration
public static string HexDump(byte[] _bytes, int _bytesPerLine = 16)
Parameters
Type | Name | Description |
---|---|---|
byte[] | _bytes | Байтовый массив |
int | _bytesPerLine | Количество байт на одну строку |
Returns
Type | Description |
---|---|
string | Строки вида 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ················ |