如何添加“三个”;c#中的XmlWriter

本文关键字:中的 XmlWriter 三个 何添加 添加 | 更新日期: 2023-09-27 18:14:00

我想用c#中的XmlWriter将以下行添加到我的xml文件中:

 <image href="c:'temp'test.png"/>

的WriteElementString不工作不幸-有谁的解决方案?

Thanks in advance

如何添加“三个”;c#中的XmlWriter

您可以使用XmlWriter…

using (XmlWriter w = Xmlwriter.Create("test.png"))
{
    w.WriteStartElement("image");
    w.WriteAttributeString("href", "c:'temp'test.png");
    w.WriteEndElement();
}

记住命名空间:System.Xml