我们如何读取 XML 数组元素的属性?下面的代码我用来读取一个 XML 数组元素的属性,它不起作用。请让我知道另一种解决方案,以阅读是否可用或我缺少什么。我看到了很多样品,但无法确定我遗漏了什么。
要读取的源 xml 是
<RootElement>
<devices AttNAme="attValue">
<device>
<sometag/>
<device>
<device>
<sometag/>
<device>
</devices>
<RootElement>
我使用的代码是
[XmlRoot("RootElement")]
public class RootElement
{
[XmlArrayItem("DeviceType", typeof(DeviceTypeSection))]
[XmlArray("devices")]
public DeviceTypesSection DeviceTypesInfo { get; set; }
}
[XmlType("DeviceTypes")]
public class DeviceTypesSection : List<DeviceTypeSection>
{
[XmlAttribute("AttNAme")]
public string AttNAme{ get; set; }
}
..and so on
谢谢,