Converts a byte array into a string representation of the byte [] for example 0x01, 0x02, 0x03 = 010203.
string TOARRAYSTRING(byte[] data)
TOARRAYSTRING(new byte [] { 0x01, 0x02, 0x03, 0xee })
Will return '010203EE'.