I'm looking for class that can generate RSS feeds.
I'm thinking of a usage like this.
RssClass foo = new RssClass();
foo.addEntry("title", URL);
foo.Export("myexportpath.rss");
Has anybody seen such a class available for free usage?
I'm looking for class that can generate RSS feeds.
I'm thinking of a usage like this.
RssClass foo = new RssClass();
foo.addEntry("title", URL);
foo.Export("myexportpath.rss");
Has anybody seen such a class available for free usage?
Have you looked at the System.ServiceModel.Syndication
namespace? That contains a raft of classes that allow you to create, consume and manipulate RSS feeds and the like.