Data Synchronisation StudioUser GuideCalculated ColumnsFunctionsTOARRAYSTRINGOn this pageTOARRAYSTRINGConverts a byte array into a string representation of the byte [] for example 0x01, 0x02, 0x03 = 010203.Syntaxstring TOARRAYSTRING(byte[] data)ExampleTOARRAYSTRING(new byte [] { 0x01, 0x02, 0x03, 0xee }) Will return '010203EE'.