Ejemplo n.º 1
0
 public static IEnumerable <YoutubeCountry> TakePages(this YoutubeCountries countries, int pageCount)
 {
     return(countries.Take(countries.ResultsPerPage.GetValueOrDefault(ResultsPerPage) * pageCount));
 }
Ejemplo n.º 2
0
 public static IEnumerable <YoutubeCountry> TakePage(this YoutubeCountries countries)
 {
     return(countries.TakePages(1));
 }