async Task LoadCountries() { var countries = await Task.Run(() => TMDBService.GetCountries()); countries.ForEach(x => Countries.Add(x)); }