使用 C# 以编程方式更新 xml
我尝试在没有 linq 的情况下更新 xml (我正在使用 VC 2.0)。 我的 xml 文件格式:
<schedule>
<id>0</id>
<name>yusuf</name>
<status>0</status>
</schedule>
AFTER UPDATE:
<schedule>
<id>0</id>
<name>yusuf</name>
<status>1</status>
</schedule>
但我不知道将状态 =0 更新为状态 =1
i try to update xml without linq (i am using VC 2.0). My xml file format:
<schedule>
<id>0</id>
<name>yusuf</name>
<status>0</status>
</schedule>
AFTER UPDATE:
<schedule>
<id>0</id>
<name>yusuf</name>
<status>1</status>
</schedule>
but i do not have any idea update status =0 to status =1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 XML 填充到 XmlDocument 中,进行更新,然后保存结果。
Stuff your XML into XmlDocument, do the update and then save the result.
您可以使用
System.Xml.XmlDocument< 来执行此操作/code>
在任何版本的 .NET 中(Silverlight 除外,其中仅存在
XDocument
):You can do this with
System.Xml.XmlDocument
in any version of .NET (except Silverlight, where onlyXDocument
exists):