私はC#、フレームワーク3.5を使用しています。xmldocumentを使用してxml値を読み取っています。属性の値は取得できますが、属性名は取得できません。例:私のxmlは次のようになります
<customer>
<customerlist name = AAA Age = 23 />
<customerlist name = BBB Age = 24 />
</customer>
次のコードを使用して値を読み取ることができます。
foreach(xmlnode node in xmlnodelist)
{
customerName = node.attributes.getnameditem("name").value;
customerAge = node.attributes.getnameditem("Age").value;
}
値の代わりに属性名(name、Age)を取得する方法。ありがとう