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