如果标题等于某个东西,我正在尝试从 rss 提要中选择“描述”。
在代码中我有这个:
public static XmlDocument GetDefaultHoroscopesFeed(string StarSign){
xdoc.SelectSingleNode(string.Format("rss/channel/item/[title = '{0}']/description", StarSign));
xdoc.LoadXml(DefaultPageHoroscopeNode.InnerXml);
return xdoc;
}
但我不断收到此错误:表达式必须评估为节点集。
请帮助某人