The following list contains the most common collection types in .NET
Arrays
ArrayList
HashTable
SortedList
Queue
Stack
All collection classes are based on the ICollection interface
either directly or indirectly.
Array class is present in System namespace where as ArrayList, HashTable, SortedList, Queue and Stack classes are
present in System.Collections namespace.