.Net - Array/Collection Summary

new byte[10] (Array with the generic type is byte)
new int[10] (Array with the generic type is int)

System.Collections.ArrayList;
System.Collections.Generic.List<T> (ArrayList’s generic type)

System.Collections.Generic.Stack<T> (implement by list)
System.Collections.Generic.Queue<T> (implement by list)

System.Collections.Hashtable;
System.Collections.Generic.Dictionary<TKey, TValue> (Hashtable’s generic type)