gpt4 book ai didi

c# - 在XML中,带问号的节点叫什么,在C#中如何添加?

转载 作者:可可西里 更新时间:2023-11-01 07:55:59 27 4
gpt4 key购买 nike

这是在 InfoPath 中创建的 XML 文件的示例:

  <?xml version="1.0" encoding="UTF-8"?>
<?mso-infoPathSolution solutionVersion="1.0.0.1" productVersion="12.0.0" PIVersion="1.0.0.0" href="file:///C:\Metastorm\Sample%20Procedures\InfoPath%20samples\Template1.xsn" name="urn:schemas-microsoft-com:office:infopath:Template1:-myXSD-2010-07-21T14-21-13" ?>
<?mso-application progid="InfoPath.Document" versionProgid="InfoPath.Document.2"?>
<my:myFields xmlns:my="http://schemas.microsoft.com/office/infopath/2003/myXSD/2010-07-21T14:21:13" xml:lang="en-us">
<my:field1>hello</my:field1>
<my:field2>world</my:field2>
</my:myFields>

带问号的前 3 个节点是什么,我如何在 C# 中创建它们?

到目前为止我有这个:

  XmlDocument xmldoc;
XmlDeclaration xmlDeclaration;

xmldoc=new XmlDocument();
xmlDeclaration = xmldoc.CreateNode(XmlNodeType.XmlDeclaration, "", "") as XmlDeclaration;
xmlDeclaration.Encoding = "UTF-8";
xmldoc.AppendChild(xmlDeclaration);

这对于顶部的 XML 声明节点工作正常,但我如何创建接下来的两个节点?

提前致谢:)

最佳答案

这些被称为处理指令。使用 XmlDocument.CreateProcessingInstruction 添加它们.

关于c# - 在XML中,带问号的节点叫什么,在C#中如何添加?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3335067/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com