Beta #10 is now available for download.
Most of the changes are related to the handling of strings and bytes arrays:
Strings and Bytes
There were some breaking changes in ByteConverter (rRandomAccessFile library):
- SubArray was changed to SubString
- ArrayCopy was changed to ArrayCopy2. There is a new ArrayCopy method that is simpler to use:
'bc = ByteConverter
'messageToSend - Global array with enough space to hold the message array.
bc.ArrayCopy(message, messageToSend)
The length of the destination array will be the same as the length of the source array. Make sure that there is enough space allocated for the destination array.