Developer Support

Advocacy and Innovation

New job with Visual Studio Platform & Ecosystem

I have accepted a new position within Microsoft with the Visual Studio Platform & Ecosystem team.  Rather than working on the .NET Compact Framework I will be working on "VS10".  I don't actually make the transition for a few more weeks, so I look forward to several more posts on NetCF topics before leaving...

Using the XmlSerializer as an XmlObjectSerializer with WCF

The Windows Communication Foundation introduced the new DataContractSerializer to replace the XmlSerializer in many scenarios.  The DataContractSerializer is faster than the XmlSerializer, but has certain limitations.  For example it does not support serializing an object's members as XML attributes.  When you write a WCF client that calls ...