我想向我的根 xmlnode 添加一个未命名的命名空间。我该怎么做呢?
错误信息 - -
元素或属性的本地名称不能为 null 或空字符串。
System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument();
XmlNode ShipmentReceiptNotification0Node = xmlDoc.CreateElement("ShipmentReceiptNotification", "", "namespacename");
ShipmentReceiptNotification0Node.InnerText = String.Empty;
xmlDoc.AppendChild(ShipmentReceiptNotification0Node);