tags:

views:

22

answers:

2

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?

+2  A: 

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.

Phil.Wheeler
The .net framework is full of surprises. Provides all the classes I need.
citronas
+1  A: 

The .Net 3.5 framework contains classes to quickly create both atom 1.0 & rss 2.0 feeds.

Carra