我的第一个问题在这里...

我正在解析xml文件(使用C#作为Xdocument)并尝试禁用一些xElement对象。
(我工作的地方)标准方法是使它们显示为xComment。

除了将其解析为文本文件外,我找不到任何其他方法。

结果应如下所示:

<EnabledElement>ABC</EnabledElement>
<!-- DisabledElement></DisabledElement-->

最佳答案

嗯,这并不是您所要求的,但这确实用注释版本替换了元素:

using System;
using System.Xml.Linq;

public class Test
{
    static void Main()
    {
        var doc = new XDocument(
            new XElement("root",
                new XElement("value1", "This is a value"),
                new XElement("value2", "This is another value")));

        Console.WriteLine(doc);

        XElement value2 = doc.Root.Element("value2");
        value2.ReplaceWith(new XComment(value2.ToString()));
        Console.WriteLine(doc);
    }
}


输出:

<root>
  <value1>This is a value</value1>
  <value2>This is another value</value2>
</root>

<root>
  <value1>This is a value</value1>
  <!--<value2>This is another value</value2>-->
</root>


如果您确实希望打开和关闭<>的注释替换元素中的注释,则可以使用:

value2.ReplaceWith(new XComment(value2.ToString().Trim('<', '>')));


...但是我个人不会。

关于c# - 如何将XElement转换为XComment(C#),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27480177/

10-10 13:31