Hi
With the XmlSerializer I can have my members in different namespaces to the parent type. Can I do the same thing with DataContractSerializer? I would like the following Xml
<h:Type xmlns:h="http://schemas.e.com/WebServices" xmlns="http://schemas.e.com/WebServices">
<Member xmlns="http://schemas.e.com/CoreTypes">0</Member>
</h:Type>
Is this possible in Wcf with DataContractSerializer?
Thanks