Collection
I- Introduction
Visual Basic .NET Collections are data structures that holds data in different ways for flexible operations. It is very flexible because we can add without any size information, that is it grow dynamically and also shrink. The important data structures in the Collections are ArrayList , HashTable , Stack and Queue etc. In the following chapters you can see how to manage these data structures in your visual basic.net (vb.net) programs.
1- How to use VB.NET ArrayList 2- How to use VB.NET HashTable 3- How to use VB.NET Stack 4- How to use VB.NET Queue II- ArrayList
ArrayList is one of the most flexible data structure from VB.NET Collections. ArrayList contains a simple list of values and very easily we can add , insert , delete , view etc.. to do with ArrayList. It is very flexible because we can add without any size information, that is it grow dynamically and also shrink
0 on: "Advance VB Programming Chapter 05"