Just curious as to why Dictionary is not supported by XmlSerializer?

You can get around it easily enough by using DataContractSerializer and writing the object to a XmlTextWriter, but what are the characteristics of a Dictionary that makes it difficult for a XmlSerializer to deal with considering it's really an array of KeyValuePairs.

In fact, you can pass an IDictionary<TKey, TItem> to a method expecting an IEnumerable<KeyValuePairs<TKey, ITem>>.

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

Hashtables need hashcode and equality comparer providers generally. These cant be serialized easily in XML, and definitely will not be portable.

But I think you already found your answer. Just serialize the hashtable as a List<KeyValuePair<K,V>> and then (re)construct it into a hashtable.

link|improve this answer
1  
What methods/properties in Dictionary imply it must be implemented as a hash table? Dictionary and IDictionary are collections of Key/Value pairs and are distinct from the Hashtable implementation. From a serialization perspective our goal seems to be to take data out of volatile memory to be able to load it back in at a later time. Reloading any data into a different concrete implementation of an interface is going to result in different behavior. – Jeremy Jun 16 '11 at 12:48
feedback

This is waaay late - but I found this question whilst looking for the answer myself, and thought I'd share my eventual answer which was to relace XmlSerializer with a different one that will serialise everything.

http://www.sharpserializer.com

It worked for me straight out of the box, serialising Dictionaries, and Multi-layered custom types, and even Genetics using Interfaces as type arguments. Also has a fully permissive license.

Thank you Pawel Idzikowski!

link|improve this answer
DataContractSerializer will serialize dictionaries as well, and is now part of the .NET Framework. – Eric J. Mar 16 at 18:11
feedback

I believe the question was concerned more with the rationale than the answer. I believe this post provides a more complete perspective: StackOverflow 1124597

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.