-1
XMLにマルチレベル持って、ここに私のコードです:辞書マルチレベルをxmlに変換するには?私は辞書を変換したい
public static XElement convertDictToXml(Dictionary<string, dynamic> inputDict, string elName)
{
XElement el = new XElement(elName);
foreach (KeyValuePair<string, dynamic> entry in inputDict)
{
el.Add(new XElement(entry.Key, entry.Value));
}
return el;
}
しかし、私は唯一の親レベルに変換することができますので、どのように我々は、すべての子辞書に親から変換することができます。