views:

105

answers:

4

Any recommendations for RSS parser library in .NET?

A: 

I have used rss.net which works fine.

klausbyskov
+4  A: 

Several questions out there already that might be helpful. Look at this search.

Perhaps some of these might be helpful:

stiank81
+1  A: 

SyndicationFeed is a part of .NET framework, you can find this class in System.ServiceModel.dll assembly.

You can read and created RSS feeds using SyndiacationFeed and System.ServiceModel.Syndication namespace.

Gutek
A: 

rssdotnet works the best and is open source

user279521