Link Search Menu Expand Document

ByteArray.ToString Method

Explanation Returns the data stored in the ByteArray object as a string. If a null character appears in the data, the data after that is ignored.
Call format var str = barr.ToString ()
Return value Converted string
Argument None
Exception None
Example of use
var barr = new ByteArray (0x41, 0x42, 0x43);
print (barr.ToString (), "¥ n");
Related item