我想反序列化以下XML ...
<MyType>
<Items>
<ItemSum>
<Value>3</Value>
</ItemSum>
<Item>
<Value>1</Value>
</Item>
<Item>
<Value>2</Value>
</Item>
</Items>
</MyType>
...成为一种以下结构...
[XmlRoot("MyType")]
public class MyType
{
[XmlArray("Items")]
[XmlArrayItem("Item")]
public CItems Items { get; set; }
public class CItems : List<CItem>
{
[XmlElement("ItemSum")]
public CItem ItemSum { get; set; }
}
public class CItem
{
[XmlElement("Value")]
public int Value { get; set; }
}
}
但是,如果我使用C#的XmlSerializer
尝试,ItemSum
属性始终为null
。我有什么想法吗?
答案 0 :(得分:2)
这是:
public class MyType
{
[XmlArray("Items")]
[XmlArrayItem("ItemSum", typeof(ItemSum))]
[XmlArrayItem("Item", typeof(SimpleItem))]
public CItems Items { get; set; }
public class CItems : List<Item> {}
public class ItemSum : Item {}
public class SimpleItem : Item {}
public class Item
{
public int Value { get; set; }
}
}
这样ItemSum
是列表的一个元素,您可以通过检查其类型来了解它。
编辑:您还可以使用计算属性:
public class CItems : List<Item>
{
[XmlIgnore]
public ItemSum ItemSum
{
get { return this.OfType<ItemSum>().Single(); }
}
[XmlIgnore]
public IEnumerable<SimpleItem> SimpleItems
{
get { return this.OfType<SimpleItem>(); }
}
}