How to add xmlnamespace to a xmldocument

Posted by CruelIO on Stack Overflow See other posts from Stack Overflow or by CruelIO
Published on 2010-05-27T10:07:30Z Indexed on 2010/05/27 10:11 UTC
Read the original article Hit count: 198

Filed under:
|
|

Hi Im trying to create a xml the should look like this

<?xml version="1.0" encoding="iso-8859-1"?>
<MyTestSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Tests>
    <Test>
      <messaure>1</messaure>
      <height>4</height>
    </Test>
    <Test>
      <messaure>4</messaure>
      <height>53</height>
    </Test>
  </Tests>
</MyTestSet>

Its not a problem to create the Tests or Test elements, but what is the best way to Create the "MyTestSet" including the namespaces? Im using c# XMLDocument

© Stack Overflow or respective owner

Related posts about c#

Related posts about Xml