Generic collections in C#

//List of integer
var intList = new List<int>();
intList.Add(5);

//Dictionary
var dic = new Dictionary<intstring>();
dic[1] = "one";

//Set
var set = new HashSet<double>();
set.Add(3.14);