Ejemplo n.º 1
0
        public List <string> Search(string term)
        {
            var result = new List <string>();

            var            google       = new GoogleSearchEngine();
            IList <string> googleSearch = google.Do(term);

            result.AddRange(googleSearch);

            var yahoo = new YahooSearchEngine();
            IDictionary <string, string> yahooSearch = yahoo.Do(term);

            result.AddRange(yahooSearch.Values.ToList());

            return(result);
        }