using System.Collections.Generic;
public static void Main()
List<SimpleRSS.feed> FeedList = new List<SimpleRSS.feed>();
List<string> FeedURLs = new List<string>();
FeedURLs.Add("http://feeds.skynews.com/feeds/rss/uk.xml");
FeedURLs.Add("https://www.nasa.gov/rss/dyn/breaking_news.rss");
FeedURLs.Add("https://weather-broker-cdn.api.bbci.co.uk/en/forecast/rss/3day/2643123");
FeedList = RSS.getFeeds(FeedURLs);
foreach (SimpleRSS.feed newsItem in FeedList){
Console.WriteLine(newsItem.title);
Console.WriteLine(newsItem.link);
Console.WriteLine(newsItem.description);
Console.WriteLine(newsItem.pubDate);