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に書き込むための最短/最短の方法は?