I have created a simple object model to define an RSS Feed. This utility should allow you to easily consume an RSS feed into an object structure that can be easily used by your application.
For example:
RssFeed theFeed = RssFeed.Create("http://www.mattberther.com/index.xml")
foreach (RssItem item in theFeed.Channel.Items)
{
// whatever you want to do with the feed
}
Thoughts and feedback are always welcome.