だから私はxmlファイルを解析しようとしています:
<?xml version="1.0" encoding="utf-8" ?>
<Root>
<att1 name="bob" age="unspecified" xmlns="http://foo.co.uk/nan">
</att1>
</Root>
次のコードを使用します。
XElement xDoc= XElement.Load(filename);
var query = from c in xDoc.Descendants("att1").Attributes() select c;
foreach (XAttribute a in query)
{
Console.WriteLine("{0}, {1}",a.Name,a.Value);
}
xmlファイルからxmlns="http://foo.co.uk/nan"を削除しない限り、コンソールには何も書き込まれません。その後、必要に応じて、属性名と値のリストを取得します。 !
編集:フォーマット。