예제 #1
0
        static void Main(string[] args)
        {
            MyDictionary <int, string> mydictionary = new MyDictionary <int, string>();

            mydictionary.Add(1, "Kaan");
            mydictionary.Add(2, "Ali");
            mydictionary.List();
        }
예제 #2
0
        static void Main(string[] args)
        {
            MyDictionary <string, int> Liste = new MyDictionary <string, int>();

            Liste.Add("Büşra", 25);
            Liste.Add("Cahit", 30);
            Liste.Add("Bekir", 62);
            Liste.Add("Pınar", 27);
            Liste.Add("Halime", 56);

            Liste.List();
        }