Код: Выделить всё
<?xml version="1.0" encoding="UTF-8" ?>
<Research researchID="XCVD3427SF"
< skip>
xmlns="http://www.xxxx.org/2000/XML"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="bla=bla-bla ">
<Product productID=" XCVD3427SF ">
<skip>
< /Product>
<skip>
<skip>
</Research>
Код: Выделить всё
XmlElement Product = doc.CreateElement( "Product")
Код: Выделить всё
<Product xmlns=”” productID=" XCVD3427SF ">
<skip>
< /Product>
<skip>
<skip>
Код: Выделить всё
XmlElement Product = doc.CreateElement( "Product", "http://www.xxxx.org/2000/XML")
Спасибо.