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]
その質問への回答で説明を見ることができます。