我如何在XmlDocument的XmlElement中放置字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我如何在XmlDocument的XmlElement中放置字符串相关的知识,希望对你有一定的参考价值。

如何像下面的示例一样在XmlElement中放置字符串:

<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

谢谢

答案

我这样解决:

       XmlElement Document = doc.CreateElement("Document");
            XmlAttribute attr = doc.CreateAttribute("xmlns");
            attr.Value = "urn:iso:std:iso:20022:tech:xsd:pain.001.001.03";
            Document.Attributes.Append(attr);
            XmlAttribute attr1 = doc.CreateAttribute("xmlns:xsi");
            attr1.Value = "http://www.w3.org/2001/XMLSchema-instance";
            Document.Attributes.Append(attr1);

以上是关于我如何在XmlDocument的XmlElement中放置字符串的主要内容,如果未能解决你的问题,请参考以下文章

如何在 C# 中使用 XmlDocument 和 XmlNode 修改现有 XML 文件

我如何在XmlDocument的XmlElement中放置字符串

如何在 XmlDocument 中的所有 XmlElements 中强制使用前缀? [复制]

如何使用 DataContractSerializer 从 XMLDocument 的单个节点反序列化?

如何将 XML 文件(XmlDocument)的内容写入文本文件?

如何在不删除旧文档的情况下将 XMLDocument 附加到 LocalStorage