在这种情况下,如何在Xml中序列化多个对象

本文关键字:序列化 对象 Xml 这种情况下 | 更新日期: 2023-09-27 18:29:50

我的设计在对象序列化方面遇到了困难。

让我给你看我的情景。我有一个通用的Configuration类,它包含三个属性:

public sealed class Configuration
{
    public Configuration(string name, Levels level, ConfigurationSpec spec)
    {
        this.Name = name;
        this.Level = level;
        this.Spec = spec;
    }
    public string Name { get; set; }
    public Levels Level { get; set; }
    public ConfigurationSpec Spec { get; set; }
}

最后一个属性是重要的,因为它是一个抽象类,并且可以从其他类派生:

public class ConfigurationSpec { }
public class BinaryConfiguration : ConfigurationSpec
{
    public Range<int> Range1 { get; set; }
    public Range<int> Range2 { get; set; }
    public BinaryConfiguration()
    {
        this.Range1 = new Range<int>();
        this.Range2 = new Range<int>();
    }
    public BinaryConfiguration(Range<int> range1, Range<int> range2)
    {
        this.Range1 = range1;
        this.Range2 = range2;
    }
}
public class Range<T> where T : IComparable<T>
{
    private T _min;
    private T _max;
    public Range()
    {
    }
    public Range(T min, T max)
    {
        this.Min = min;
        this.Max = max;
    }
    public T Min
    {
        get { return _min; }
        set { _min = value; }
    }
    public T Max
    {
        get { return _max; }
        set { _max = value; }
    }

所有这些都包含ConfigurationSpec类。真正的问题是,我将添加许多从ConfigurationSpec派生的Specs,我的意思是数百。

<Configuration>
    <!-- Maybe here it'll be good specify the type -->
    <ConfigurationSpec>
        <Range1 X="2" Y="4" />
        <Range2 X="5" Y="10" />
    </ConfigurationSpec>
</Configuration>

我想知道如何从XmlFile中编写和读取所有这些类以进行序列化。

如果您有任何疑问,请告诉我

在这种情况下,如何在Xml中序列化多个对象

只要Configuration类有对ConfigurationSpec的引用,它就会正确地序列化/反序列化所需的所有对象。

谈到ConfigurationSpec,只有Configuration引用的类型才会被序列化(当您序列化Configuration的实例时)。换句话说,如果你得到了5个不同的ConfigurationSpec,那么只有你将传递给Configuration构造函数的一个会被串行化