小编kha*_*pur的帖子

如果内部标记在C#中使用Linq匹配值,则删除XML节点

<column>
    <format>boolicon</format>
    <heading>Attachment</heading>
    <prop>urn:schemas:httpmail:hasattachment</prop>
    <type>boolean</type>
    <bitmap>1</bitmap>
    <width>10</width>
    <style>padding-left:3px;text-align:center</style>
    <editable>0</editable>
    <displayformat>3</displayformat>
</column>
<column>
    <heading>From</heading>
    <prop>urn:schemas:httpmail:fromname</prop>
    <type>string</type>
    <width>68</width>
    <style>padding-left:3px;text-align:left</style>
    <editable>0</editable>
    <displayformat>1</displayformat>
</column>
<column>
    <heading>Subject</heading>
    <prop>urn:schemas:httpmail:subject</prop>
    <type>string</type>
    <width>326</width>
    <style>padding-left:3px;text-align:left</style>
    <editable>1</editable>
</column>
Run Code Online (Sandbox Code Playgroud)

如果标题等于"主题",我想删除列节点

(from node in xdoc.Descendants("column") select node).ToList().ForEach(x=>x.Remove());
Run Code Online (Sandbox Code Playgroud)

仅当标题与"主题"匹配时才尝试选择节点.

提前致谢.

c# xml linq

2
推荐指数
1
解决办法
185
查看次数

标签 统计

c# ×1

linq ×1

xml ×1