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

            Musteri.Add(156, "salim");
            Musteri.Add(154, "ömer ");
            Musteri.Add(1547, "kadir");

            Musteri.Read();
        }
Example #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Enlish to French dictionary");
            MyDictionary <string, string> myDictionary = new MyDictionary <string, string>();

            myDictionary.Add("One", "Un");
            myDictionary.Add("Two", "Deux");
            myDictionary.Add("Three", "Trois");
            myDictionary.Add("Four", "Uatre");
            myDictionary.Add("Five", "Cinq");

            myDictionary.Read();
        }