--> No default size of either Array or ArrayList
-->ArrayList class implements IList interface
There are Many Advantages
1. Its Provide Commaon method such as : add,insert,append, remove, replace etc.
2. capacity are increased when objects are added .
3. no restriction added to an arraylist , you can add first objects is integer,secound object string and you can also added user define object in array list. you can sey that it will be added Heterogeneous data.
eg For Adding Data to Array List
Dim arrList as new ArrayList
arrList .add("A")
arrList .add("C")
arrList .add("B")
arrList .add("1")
You Can Sort The Data
arrList .Sort
arrList .Reverse
Read Data for Index Basis
dim a as string=arrList.Item(3)
Thanks & Regards
Santosh Kumar
http://www.operativesystems.com Margamchakradhar31, if this helps please login to Mark As Answer. | Alert Moderator