コード例 #1
0
        static void Main(string[] args)
        {
            Dictionary <int, Football> ballClub = new Dictionary <int, Football>();



            Football fb1 = new Football();

            fb1.TeamID     = 1000;
            fb1.TeamName   = "Cleveland Browns";
            fb1.Division   = "North";
            fb1.Conference = "AFC";
            fb1.Networth   = 1.25;

            Football fb2 = new Football();

            fb2.TeamID     = 2000;
            fb2.TeamName   = "Baltimore Ravens";
            fb2.Division   = "North";
            fb2.Conference = "AFC";
            fb2.Networth   = 2000000;

            ballClub.Add(fb1.TeamID, fb1);
            ballClub.Add(fb2.TeamID, fb2);


            foreach (var item in ballClub)
            {
                Football kick = item.Value;
                kick.PrintClub2();
            }

            Console.ReadLine();



            foreach (KeyValuePair <int, Football> item in ballClub)
            {
                Football fb = item.Value;
                fb.PrintClub();
            }
            Console.ReadLine();
        }
コード例 #2
0
        static void Main(string[] args)
        {
            Football fb1 = new Football();

            fb1.TeamID     = 1000;
            fb1.TeamName   = "Browns";
            fb1.Division   = "North";
            fb1.Conference = "AFC";
            fb1.NetWorth   = 1000000;

            Football fb2 = new Football();

            fb2.TeamID     = 2000;
            fb2.TeamName   = "Colts";
            fb2.Division   = "South";
            fb2.Conference = "AFC";
            fb2.NetWorth   = 2000000;

            Dictionary <int, Football> ballClub = new Dictionary <int, Football>();

            ballClub.Add(fb1.TeamID, fb1);
            ballClub.Add(fb2.TeamID, fb2);


            foreach (KeyValuePair <int, Football> item in ballClub)
            {
                Football qwe = item.Value;
                qwe.PrintClub();
            }


            foreach (var item in ballClub)
            {
                Football fb = item.Value;
                fb.PrintBro();
            }


            Console.ReadLine();
        }