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