检查 IEnumerable 类型的列表中的值是否存在<XAtrribute>于另一个相同类型 + LINQ to XML 的列表中



如何检查XTclist的值是否存在于Xrclist中。

XR:

<result>
 <claims type="Subject">
          <scope_of_claim>Full scope</scope_of_claim>
          <claim_date>02/28/2009</claim_date>
          <claim_age months="1" years="2" />
</claims>
 <claims type="Vehicle">
          <scope_of_claim>Full scope</scope_of_claim>
          <claim_date>12/8/2010</claim_date>
          <claim_age months="1" years="2" />
</claims>

XT:

<result>
   <claims type="Vehicle">
          <scope_of_claim>Full scope</scope_of_claim>
          <claim_date>24/1/2011</claim_date>
          <claim_age months="2" years="0" />
   </claims>
</result>

代码:

var XRclist = XR.Descendants("claims").Attributes("type");
    var xTclist = XT.Descendants("claims").Attributes("type");
         foreach (var c in xTclist)
         {
             if (XRclist.Contains(c.value)) // This line need to be corrected
             {
                Do some thing.
             }
             else
             {
               Do something else.
             }
         }

您可以使用扩展方法Any:

而不是if (XRclist.Contains(c.value))

使用if (XRclist.Any(x => x.Value.Equals(c.Value))

最新更新