Using the XML document in System.Xml.XMLDocument how would I create the folow9ing XML:
Code:
<WokasUIObject>
   <User>
        <Username>Woka</Username>
        <Password>Woof</Password>
        <DOB>13th June 2063</DOB>
        <IsNew>False</IsNew>
   </User>
</WokasUIObject>
Also, would it be possible to specify the data types for the user props?

Woka