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