using System.Collections.Generic;
public static void Main()
List<SimpleRSS.feed> FeedList = new List<SimpleRSS.feed>();
List<string> FeedURLs = new List<string>();
FeedList = RSS.getFeed("http://feeds.skynews.com/feeds/rss/uk.xml");
foreach (SimpleRSS.feed newsItem in FeedList){
Console.WriteLine(newsItem.title);
Console.WriteLine(newsItem.link);
Console.WriteLine(newsItem.description);
Console.WriteLine(newsItem.pubDate);