Array List in
Array List in
ArrayList contains a simple list of values. Very easily we can add , insert , delete ,
view etc.. to do with ArrayList. It is very flexible becuse we can add without any size
information , that is it grow dynamically and also shrink .
Syntax : ArrayList.add(Item)
ItemList.Add("Item4")
Syntax : ArrayList.insert(index,item)
ItemList.Insert(3, "item6")
Syntax : ArrayList.Remove(item)
Syntax : ArrayList.RemoveAt(index)
ItemList.RemoveAt(2)
Syntax : ArrayListSort()
VB.NET SourceCode