我的第一个问题在这里…
我正在解析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('<', '>')));
…但是我个人不会.