Come utilizzare dizionari in LINQ to XML
Spesso risulta utile convertire strutture dei dati di vari tipi e in XML e quindi XML in altre strutture dei dati. Questo articolo illustra una conversione di un oggetto Dictionary<TKey,TValue> in XML e viceversa.
Esempio: Creare un dizionario e convertirne il contenuto in XML
Questo primo esempio crea un oggetto Dictionary<TKey,TValue> e quindi lo converte in XML.
La versione C# dell'esempio usa un tipo di costruzione funzionale in cui una query proietta nuovi oggetti XElement e la raccolta risultante viene passata come argomento al costruttore dell'oggetto XElement Root.
La versione Visual Basic usa valori letterali XML e una query in un'espressione incorporata. La query proietta nuovi oggetti XElement, che diventano quindi il nuovo contenuto per l'oggetto Root
XElement.
Dictionary<string, string> dict = new Dictionary<string, string>();
dict.Add("Child1", "Value1");
dict.Add("Child2", "Value2");
dict.Add("Child3", "Value3");
dict.Add("Child4", "Value4");
XElement root = new XElement("Root",
from keyValue in dict
select new XElement(keyValue.Key, keyValue.Value)
);
Console.WriteLine(root);
Dim dict As Dictionary(Of String, String) = New Dictionary(Of String, String)()
dict.Add("Child1", "Value1")
dict.Add("Child2", "Value2")
dict.Add("Child3", "Value3")
dict.Add("Child4", "Value4")
Dim root As XElement = _
<Root>
<%= From keyValue In dict _
Select New XElement(keyValue.Key, keyValue.Value) %>
</Root>
Console.WriteLine(root)
Nell'esempio viene prodotto l'output seguente:
<Root>
<Child1>Value1</Child1>
<Child2>Value2</Child2>
<Child3>Value3</Child3>
<Child4>Value4</Child4>
</Root>
Esempio: Creare un dizionario e caricarlo da dati XML
L'esempio successivo crea un dizionario e lo carica da dati XML.
XElement root = new XElement("Root",
new XElement("Child1", "Value1"),
new XElement("Child2", "Value2"),
new XElement("Child3", "Value3"),
new XElement("Child4", "Value4")
);
Dictionary<string, string> dict = new Dictionary<string, string>();
foreach (XElement el in root.Elements())
dict.Add(el.Name.LocalName, el.Value);
foreach (string str in dict.Keys)
Console.WriteLine("{0}:{1}", str, dict[str]);
Dim root As XElement = _
<Root>
<Child1>Value1</Child1>
<Child2>Value2</Child2>
<Child3>Value3</Child3>
<Child4>Value4</Child4>
</Root>
Dim dict As Dictionary(Of String, String) = New Dictionary(Of String, String)
For Each el As XElement In root.Elements
dict.Add(el.Name.LocalName, el.Value)
Next
For Each str As String In dict.Keys
Console.WriteLine("{0}:{1}", str, dict(str))
Next
Nell'esempio viene prodotto l'output seguente:
Child1:Value1
Child2:Value2
Child3:Value3
Child4:Value4