I am working on a project for an RSS Client. Right now I'm retrieving a feed using SyndicationFeed and an XmlReader and adding it to a list:
SyndicationFeed feed = SyndicationFeed.Load(
XmlReader.Create("SOME URL TO A FEED"));
List<SyndicationFeed> feeds = new List<SyndicationFeed>();
feeds.Add(feed);
SyndicationFeed and most of its properties are not serializable. I need to be able to save the feeds and their respective items when my program is closed. I have a database solution working with Entity Framework but I would like to get away from this. So my next thought was to simply serialize the container with all the feeds but that's no go. Should I write serializabl class that mimics the SyndicationFeed and its properties and do a sort of boxing and unboxing or is there a better way?