Skip to content

Instantly share code, notes, and snippets.

View shencypeter's full-sized avatar

Peter Shen shencypeter

View GitHub Profile
@yetanotherchris
yetanotherchris / gist:4773855
Created February 12, 2013 22:03
RSS feed parser
/// <summary>
/// A simple RSS, RDF and ATOM feed parser.
/// </summary>
public class FeedParser
{
/// <summary>
/// Parses the given <see cref="FeedType"/> and returns a <see cref="IList&amp;lt;Item&amp;gt;"/>.
/// </summary>
/// <returns></returns>
public IList<Item> Parse(string url, FeedType feedType)