我想编辑xml文件
我修改了 d xml 文件的结构。我想编辑可见的值
I have modified the structure of d xml file. i want to edit value of visible
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我修改了 d xml 文件的结构。我想编辑可见的值
I have modified the structure of d xml file. i want to edit value of visible
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
那么,LINQ to XML 使操作 XML 文档变得非常容易,前提是它们足够小,可以合理地加载到内存中。
例如:
现在将为每个
c
元素设置value
属性。目前尚不清楚这是否是您想要的。如果不是,请编辑您的问题以使其更加具体。Well, LINQ to XML makes it very easy to manipulate XML documents, assuming they're small enough to be sensibly loaded into memory.
For example:
Now that will set the
value
attribute for everyc
element. It's not clear whether or not that's what you want. If it's not, please edit your question to make it more specific.您可以使用这样的代码模式:
You can use such code pattern: