空の辞書を指定した
<items> <item>
public class item { [XmlAttribute] public int id; [XmlAttribute] public string value; }を使用したシリアル化カスタム クラス
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);カスタム クラスを使用した逆シリアル化
XML を項目オブジェクトの配列に逆シリアル化します:
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 を使用したシリアル化
XElement xElem2 = XElement.Parse(xml); //XElement.Load(...)XElement を使用した逆シリアル化
var newDict = xElem2.Descendants("item") .ToDictionary(x => (int)x.Attribute("id"), x => (string)x.Attribute("value"));LINQ を使用して XML からデータを抽出し、辞書に追加します:
以上がC# を使用して辞書に XML データを追加するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。