我必须先修剪 rss 提要,然后再将其存储在独立存储中。我的代码是
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 之前修剪字符串。但它并没有让我在 select new RSSClass {} 正文中这样做,例如,如果我写行字符串 temp; 在 imageURL 之前,它给出了错误,“无效的表达式术语”。所以实际上我必须在存储在隔离存储之前修剪 rss。请指导我。谢谢