Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 XML 文档中选择第一个具有名称的属性"valgfase"
"valgfase"
我尝试了以下表达式:
string strExpression = "//@valgfase[1]";
和
string = //@valgfase[position() = 1]
当我执行我的表达式时,它返回具有属性“valgfase”的所有元素。
这样做的正确方法是什么?
我正在C#使用XPathDocument和XPathNavigator
C#
XPathDocument
XPathNavigator
你应该这样做(//@valgfase)[1]。
(//@valgfase)[1]
您可以在该问题的答案中看到解释。