all.
I am interested in pulling the Last Build Date information from an RSS feed. I will use the information to let the user know when there is a new feed out.
Use LINQ-to-XML:
from buildDate in xmlData.Descendants("lastBuildDate") select buildDate.Value
Where xmlData is the rss string you loaded.
xmlData