要素名は本当にレベルごとに変わるのですか? そうでない場合は、非常に単純なクラス モデルとXmlSerializer
. 実装IXmlSerializable
は...トリッキーです。そしてエラーが発生しやすい。やむを得ない場合以外は避けてください。
名前が異なっていても固定されている場合は、xsd を介して実行します。
xsd example.xml
xsd example.xsd /classes
例のXmlSerializer
ないIXmlSerializable
場合 (各レベルで同じ名前):
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
[XmlRoot("Foolist")]
public class Record
{
public Record(string name)
: this()
{
Name = name;
}
public Record() { Children = new List<Record>(); }
[XmlAttribute("name")]
public string Name { get; set; }
[XmlElement("Child")]
public List<Record> Children { get; set; }
}
static class Program
{
static void Main()
{
Record root = new Record {
Children = {
new Record("A") {
Children = {
new Record("Child 1"),
new Record("Child 2"),
}
}, new Record("B"),
new Record("C") {
Children = {
new Record("Child 1") {
Children = {
new Record("Little 1")
}
}
}
}}
};
var ser = new XmlSerializer(typeof(Record));
ser.Serialize(Console.Out, root);
}
}