↧
Answer by SLaks for RSS Feed Trouble w/ Linq
The problem is that the entry elements are in an XML namespace (the xmlns attribute in each entry).You need to do this:XNamespace atom = "http://www.w3.org/2005/Atom";var feeds = from feed in...
View ArticleRSS Feed Trouble w/ Linq
Trying to read an RSS and select information using Linq but can't seem to get it working.Here is my code:XDocument feedXML =...
View Article