예제 #1
0
        private void AddCountry()
        {
            Console.Clear();
            Console.Write("Please enter a country to add: ");
            string input = Console.ReadLine();

            CountriesTextFile.WriteCountry("../../countries.txt", input);
        }