Link Search Menu Expand Document

ByteArray.ByteAt Method

Explanation Returns the byte value at the specified position of the value stored in the ByteArray object as an integer value.
Call format var b = barr.ByteAt (index)
Return value Byte value
Arguments integer index Position to get the byte value
Exception None
Example of use
var barr = new ByteArray ("test");
print (barr.ByteAt (0), "¥ n");
Related item