Dictionary
<items> <item>
XElement を使用せずにこのシリアル化と逆シリアル化を実現するには:
public class Item { [XmlAttribute] public int Id; [XmlAttribute] public string Value; }
Dictionary<int, string> dict = new Dictionary<int, string>() { { 1, "one" }, { 2, "two" } };
XmlSerializer serializer = new XmlSerializer(typeof(Item[]), new XmlRootAttribute() { ElementName = "items" });
serializer.Serialize(stream, dict.Select(kv => new Item() { Id = kv.Key, Value = kv.Value }).ToArray());
var orgDict = ((Item[])serializer.Deserialize(stream)) .ToDictionary(i => i.Id, i => i.Value);
後で XElement を使用することにした場合は、次の方法で行うことができますシリアル化と逆シリアル化:
XElement xElem = new XElement( "items", dict.Select(x => new XElement("item", new XAttribute("id", x.Key), new XAttribute("value", x.Value))) ); var xml = xElem.ToString(); //xElem.Save(...);
XElement xElem2 = XElement.Parse(xml); //XElement.Load(...) var newDict = xElem2.Descendants("item") .ToDictionary(x => (int)x.Attribute("id"), x => (string)x.Attribute("value"));
以上がXElement を使用せずに辞書をカスタム XML にシリアル化および逆シリアル化する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。