diff --git a/CityFinder/Program.cs b/CityFinder/Program.cs index 329ff17..4e1c737 100644 --- a/CityFinder/Program.cs +++ b/CityFinder/Program.cs @@ -49,6 +49,12 @@ namespace CityFinder // Get the city using an API call await GetCity(countryInput, postalCodeInput); + + // Let the user read the results + Console.WriteLine("Press any key to finish... "); + Console.ReadKey(); + } + /// /// This method sets up the json config file and sets the user-agent header on the HttpClient. ///