http://msdn.microsoft.com/en-us/library/system.runtime.serialization.datacontractserializer_members.aspx
So as it turns out, your XML stream must have the XML Nodes in Alphabetical Order when trying to deserialize XML data into an object. Very wierd.
88115645-f61b-467a-8b66-6c0411609f65|0|.0
Many thanks to Einar Ingebrigsten! I needed to serialize and deserialize some configuration data in one of my Silverlight projects I am currently working on. This really came in handy:
http://www.ingebrigtsen.info/post/2008/11/29/Serialization-in-Silverlight.aspx
The executive summary is that you can use the DataContractSerializer without the need for DataContract or DataMember attributes. Einar even gives you some sweet helper methods for Silverlight to make your life even easier.
4f70b671-3ee5-4128-a396-14ce9ffabaf1|0|.0