Example #1
0
        private void btTemplatePattern_Click(object sender, EventArgs e)
        {
            string str  = "";
            Game   game = new Cricket();

            str             += game.play();
            game             = new Football();
            str             += game.play();
            tbOutWindow.Text = str;
        }