XmlElement xmlElementSAPD = xmlDocument.CreateElement("SAPD");
root.AppendChild(xmlElementSAPD);
xmlElementSAPD.AppendChild(XmlFunctions.GetXMLElement(xmlDocument, "smu", dr.GetString("sma").Trim()));
上面的 c# 代码在下面创建 XML。
<SAPD>
<smu>123</smu>
</SAPD>
如何更改上面的代码以便我可以得到
<ns0:SAPD>
<ns0:smu>123</ns0:smu>
</ns0:SAPD>
任何人?如何在 xml 节点中添加 ns0:?