This class implements a dynamic array of Byte
values.
This class is creatable.
DIM hByteArray AS Byte[] hByteArray = NEW Byte[] ( [ Size AS Integer ] ) |
Byte
values.
Size specifies the initial size of the array. By default, the array is initially void.
This class acts like an array.
DIM hByteArray AS Byte[] DIM anInteger AS Integer anInteger = hByteArray [ Index AS Integer ] |
DIM hByteArray AS Byte[] DIM anInteger AS Integer hByteArray [ Index AS Integer ] = anInteger |
This class is enumerable with the FOR EACH keyword.
DIM hByteArray AS Byte[] DIM anInteger AS Integer FOR EACH anInteger IN hByteArray ... NEXT |