using System.Collections.Generic;
public static void Main(string[] args)
IList<int> myList = new List<int>();
for (int i=0;i<myList.Count;i++)
Console.WriteLine(myList[i]);
ISet<string> ingredients = new HashSet<string>();
ingredients.Add("sugar");
ingredients.Add("butter");
IDictionary<string, int> myDictionary = new Dictionary<string, int>();
myDictionary.Add("Jenny", 34);
myDictionary.Add("Livia", 28);
myDictionary.Add("Paul", 31);
string name = Console.ReadLine();
Console.WriteLine(myDictionary[name]);
Console.WriteLine(myDictionary[name]);
Console.WriteLine(myDictionary[name]);
Console.WriteLine("The name does not exist in the database");
public interface IList : System.Collections.ICollection