我必须修剪rss feed,然后将其存储在isloated存储中。我的代码是
var rssData = from rss in XElement.Parse(e.Result).Descendants("item")
select new RSSClass
{
imageURL = rss.Element("description").Value,
imageRef = rss.Element("description").Value,
imageLink = rss.Element("link").Value,
imageTime = rss.Element("pubDate").Value
};
我想在分配给imageURL之前修剪字符串。但它没有让我在选择新的RSSClass {}体内进行,例如,如果我写行 串温;在imageURL之前,它给出了错误,“无效的表达式术语”。所以我必须在存储在隔离存储之前修剪rss。请指导我。感谢
答案 0 :(得分:0)
select
需要进入Value
内,就在您要分配的imageURL = rss.Element("description").Value.Trim()
之后:
null
如果传递给函数的值为{{1}},我不确定该行为,因此这将是您唯一关注的领域。