C#DataStore

 1. Array :

An array is a collection of elements of the same type stored in the exact memory location

 2.ArrayList: 

ArrayList is a non-generic collection of objects whose size increases dynamically. It is the same as Array except that its size increases dynamically. An ArrayList can be used to add unknown data where you don't know the types and the size of the data.

3.

Comments