Functions

TOARRAYSTRING

Converts a byte array into a string representation of the byte [] for example 0x01, 0x02, 0x03 = 010203.

Syntax

string TOARRAYSTRING(byte[] data)

Example

TOARRAYSTRING(new byte [] { 0x01, 0x02, 0x03, 0xee }) 

Will return '010203EE'.