We use Arrays to store lists of similar items, like class names or class marks. The allows us to reference all the items with the same name and therefore simplify coding by using loops.
Visual basic uses the DIM command to set up an array.
DIM StrName(5) as String ‘ creates a Array with 6 elements of type string Continue reading Arrays