static void Main(string[] args)
        {
            Car car1 = new Car();
                car1.Make = "Oldsmobile";
                car1.Model = "Cutlas Supreme";

                Car car2 = new Car();
                car2.Make = "Geo";
                car2.Model = "Prism";

                Book b1 = new Book();
                b1.Author = "Robert Tabor";
                b1.Title = "Microsoft .NET XML Web Services";
                b1.ISBN = "0-000-00000-0";

            //LIST
            List<Car> myList = new List<Car>();

            myList.Add(car1);
            myList.Add(car2);
            //myList.Add(b1);   List cannot hold anytoher type but Cars

            foreach (Car car in myList)
            {
                Console.WriteLine(car.Make);
            }

            //DICTIONARY
            Dictionary<string, Car> myDictionary = new Dictionary<string, Car>();
            myDictionary.Add(car1.Make, car1);
            myDictionary.Add(car2.Make, car2);
            Console.WriteLine(myDictionary["Geo"].Model);

            Console.ReadLine();
        }
Example #2
0
        static void Main(string[] args)
        {
            Car car1 = new Car();
            car1.Make = "Oldsmobile";
            car1.Model = "Cutlas Supreme";

            Car car2 = new Car();
            car2.Make = "Geo";
            car2.Model = "Prism";

            Book b1 = new Book();
            b1.Author = "Robert Tabor";
            b1.Title = "Microsoft .NET XML Web Services";
            b1.ISBN = "0-000-00000-0";

            Console.ReadLine();
        }