C#将Dictionary转换为XML


Dictionary to Element:

Dictionary<string, string> dict = new Dictionary<string,string>();
XElement el = new XElement("root",
dict.Select(kv => new XElement(kv.Key, kv.Value)));


Element to Dictionary:

XElement rootElement = XElement.Parse("<root><key>value</key></root>");
Dictionary<string, string> dict = new Dictionary<string, string>();
foreach(var el in rootElement.Elements())
{
dict.Add(el.Name.LocalName, el.Value);
}

 

you can use ToDictionary... rootElement.Elements().ToDictionary( key => key.Name, val => val.Value);

posted @ 2016-04-19 17:47  星辰Mapley  阅读(3702)  评论(0编辑  收藏  举报