Esempio n. 1
0
        public void SelectCountryAction()
        {
            Console.Clear();
            if (FancyGraphics)
            {
                listView.DisplayColored();
            }
            else
            {
                listView.Display();
            }
            int nCountry = Utilities.GetIntInputAdjusted("Which country would you like to learn more about", listView.Countries.Count);

            CountryAction(CountryDb[nCountry] ?? new Country("An error has occurred.", "Please try again.", "Red", "White"));
        }