0
string PrintDict(Dictionary<string, string> MyDict)
{
XElement p = new XElement("DictionaryContents");
MyDict.ForEach(kvp => p.Add(new XElement(kvp.Key, kvp.Value)));
return p.ToString();
}
有沒有更好的方法?使用linq將字典內容寫入XML的最快/最短的方式?