StringUtils HexToString Method C# API
Returns a hexadecimal string representation of the byte values in the hex parameter.

Namespace: Facilita.Util
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

public static string HexToString(
	byte[] hex
)

Parameters

hex
Type:  System Byte 
The input byte array.

Return Value

A hexadecimal string representation of the byte values.
Remarks

The returned string is in the format typically used to display binary data such as in an ethernet trace or the log file output from a TCP Virtual User.
Typical output format example
"80 14 83 f3 31 F3 00 ab 15 97 4d 42 ef 20 41 57"
See Also