c# – 使用XmlSerializer反序列化具有额外属性的列表

我想反序列化以下
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.我有什么想法我做错了吗?

最佳答案 这里是:

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>(); }
    }
}
点赞