Hello
I've this strange issue. I've an xml string which looks like below -
<key><int>5</int></key><value><int>10</int>
The above xml is obtained after serializing a Dictionary using Paul's Code. Now i want to convert the xml back to the dictionary.
How can i get the type "int" from the xml and declare the dictionary as follows?
Dictionary<int, int>
Any clues?