xml结构示例:
<item>
<title>Foo</title>
<description>Boo</description>
<image>Poo</image>
</item>
我的代码是:
var rssFeeds =
from feed in rssXML.Descendants("item")
select new
{
Title = feed.Element("title").Value,
Description = feed.Element("description").Value,
Image= feed.Element("image").Value,
};
问题是我如何检查上面代码中是否存在“title”元素......如果不存在,请使用其他元素