public static void Main(string[] args) { Game game = new Cricket(); game.play(); Console.WriteLine(); game = new Football(); game.play(); }
static void Main(string[] args) { Game game = new Cricket(); game.Play(); game = new Football(); game.Play(); }
static void Main(string[] args) { Game football = new Football(); football.PlayGame(); Game basketball = new Basketball(); basketball.PlayGame(); }
static void Main(string[] args) { Game game = new Cricket(); game.Play(); Console.WriteLine(""); game = new Football(); game.Play(); Console.Read(); }