名前のない名前空間をルートxmlnodeに追加したいと思います。どうすればこれを行うことができますか?
エラーメッセージ - -
要素または属性のローカル名をnullまたは空の文字列にすることはできません。
System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument();
XmlNode ShipmentReceiptNotification0Node = xmlDoc.CreateElement("ShipmentReceiptNotification", "", "namespacename");
ShipmentReceiptNotification0Node.InnerText = String.Empty;
xmlDoc.AppendChild(ShipmentReceiptNotification0Node);