在.Net 4.X
中,此扩展方法位于System.Xml.XPath
。
但是,我想知道如何在.Net Core中找到/使用它?我有一个班级图书馆。
移植工具无法显示有关XPathSelectElement
的任何信息。
或者.Net核心中的任何替代品?
非常感谢!
答案 0 :(得分:7)
您需要添加包System.Xml.XPath.XDocument 4.0.1
。此程序包提供了向System.Xml.XPath
程序包添加System.Xml.XDocument
支持的扩展方法。
在程序包管理器控制台中运行以下命令。
PM> Install-Package System.Xml.XPath.XDocument -Version 4.0.1
您也可以从版本为NuGet 2.12
或更高版本的NuGet包管理器安装它。
答案 1 :(得分:0)
根据Lex Li的建议,我们可以使用this website来搜索包名称。就我而言,它是:System.Xml.XPath.XDocument
。