我需要在现有的 xml 文档中添加注释。示例 xml 如下所示,我需要用 c# 编写代码。XML 序列化用于生成此 xml 任何帮助都会很棒...在此先感谢
<?xml version="1.0" encoding="utf-8"?>
<Person>
<Name>Job</Name>
<Address>10dcalp</Address>
<Age>12</Age>
</Person>
我需要在现有的 xml 文档中添加注释。示例 xml 如下所示,我需要用 c# 编写代码。XML 序列化用于生成此 xml 任何帮助都会很棒...在此先感谢
<?xml version="1.0" encoding="utf-8"?>
<Person>
<Name>Job</Name>
<Address>10dcalp</Address>
<Age>12</Age>
</Person>
试试这样:
string input = @"<?xml version=""1.0"" encoding=""utf-8""?><Person><Name>Job</Name><Address>10dcalp</Address><Age>12</Age></Person>";
XDocument doc = XDocument.Parse(input);
XElement age = doc.Root.Element("Age");
XComment comm = new XComment("This is comment before Age");
age.AddBeforeSelf(comm);
此代码获取文档,找到名为“Age”的元素,该元素应位于根元素(“Person”)下,并在其前添加注释。
您可以使用XmlWriter
以下方式编写评论:
MemoryStream stream = new MemoryStream();
XmlWriter writer = XmlWriter.Create(stream);
writer.WriteStartDocument();
writer.WriteComment("Add comment here");
现在,您XmlWriter
通过序列化程序序列化实例。