找到了别人遇到和我一样的问题:http://ylad.codeplex.com/discussions/430095(英文) 一位叫做Mister Goodcat的提供了信息: Short answer: XPath is not supported on the phone. If you want to use HTML Agility Pack, use the LinqToXml features instead. Long version: Enabling the XPath fe…
LINQ to XML LINQ学习第一篇 1.LINQ to XML类 以下的代码演示了如何使用LINQ to XML来快速创建一个xml: public static void CreateDocument() { string path = @"d:\website"; XDocument xdoc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"), new…
LINQ to XML并不打算替代标准的XML API,例如,XML DOM(Document Object Model).Path.XQuery和XSLT等.如果熟悉这些API或当前需要使用或学习它们,可以继续使用或学习.LINQ to XML补充了这些标准XML类,更便于使用XML.LINQ to XML为创建和查询XML据提供了额外的选项,代码更简单,开发许多常见的情形时速度更快,如果已经在其他程序中使了LINQ,开发速度将会更快. 要使linq操作Xml 必须引入using System…
http://www.cnblogs.com/greatverve/archive/2010/07/09/linq-to-xml-add-delete-update-query.html 记录一下,别的都比较普通,只有这一句比较有意思.doc.Root.Descendants("").Select(p=> new {}).Where();跟jQuery的层级筛选比较类似jQuery("").children().first().html(); doc.Root…