VB.NET



Array List :An ArrayList class represents a dynamically sized, index-based collection of objects. In the cases where you don't know the number of objects that you would store, an ArrayList class is a good option to utilize.
Declaring Array list:
SynTax :
Dim <Arraylistname> As ArrayList = New ArrayList() More..