如何在元素值中获取属性值?我正在寻找以下结果:
<Item>
<Element Attribute="Attribute value">Element value</Element>
</Item>
当我序列化以下类时,属性成为Item
的一部分:
[Serializable]
public class Item
{
[XmlElement("Element")]
public string Element;
[XmlAttribute("Attribute")]
public string Attribute;
}