UtilitiesByteArrayToHexView Method (Byte, Int32, Int32) |
Pretty-print a Hex view of a byte array. Slow.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static string ByteArrayToHexView(
byte[] inArr,
int iBytesPerLine,
int iMaxByteCount
)
Public Shared Function ByteArrayToHexView (
inArr As Byte(),
iBytesPerLine As Integer,
iMaxByteCount As Integer
) As String
public:
static String^ ByteArrayToHexView(
array<unsigned char>^ inArr,
int iBytesPerLine,
int iMaxByteCount
)
Parameters
- inArr
- Type: SystemByte
The byte array - iBytesPerLine
- Type: SystemInt32
Number of bytes per line - iMaxByteCount
- Type: SystemInt32
The maximum number of bytes to pretty-print
Return Value
Type:
StringString containing a pretty-printed array
See Also