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 があり、それらの属性を再配置したいと考えています。そして、私はさまざまな属性を持つさまざまな要素を持っています。最初の属性としてすべての要素「id」が必要です。
ここに小さな例を示します。
<item name="product" dep="DE" id="I001">Item</item>
そして、次のような属性を再配置したい
<item id="I001" name="product" dep="DE">Item</item>
Dim x As XElement = <item name="product" dep="DE" id="I001">Item</item> x.ReplaceAttributes(x.Attributes("id").Concat(x.Attributes().Where(Function(a) a.Name <> "id")))