vote up 1 vote down star
1

what's the best RSS reader for .net out there? most efficient and easy to use the ones i found are really complicated

flag

75% accept rate
Are you trying to write your own? Isn't RSS an xml format? – Ryan Graham Mar 26 at 4:22

3 Answers

vote up 4 vote down check

http://msdn.microsoft.com/en-us/library/system.servicemodel.syndication.aspx http://msdn.microsoft.com/en-us/magazine/cc135976.aspx

.net has a class to parse ATOM and RSS feeds. Check out the links. What are you trying to do? Can you give more information?

Alternatively You can just remove the "Feed version" from the XML file and parse it as a normal XML file using xmlDocument class.

link|flag
wow almost too simple – ssl Mar 26 at 4:37
vote up 4 vote down

Have you looked at the System.ServiceModel.Syndication namespace in .NET 3.5?

There are other answers on Stack Overflow that may help - for example: C# RSS Reader.

link|flag
Simon, thanks! Have also been looking for a thing like this! I had no idea this was in 3.5! – Wim Haanstra Mar 26 at 5:57
vote up 1 vote down

You may want to look at Argotic too - http://www.codeplex.com/Argotic

I have used Argotic during .Net 1.1 when the Syndication framework was not available in the framework and it did the job.

However, I would recommend the use of System.ServiceModel.Syndication if it does everything you need.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.