我正在 VB 中使用 LINQ to XML(尽管 C# 中的答案也很棒)。首先,我的代码有效,所以这并不重要。但是,我不禁想到,我对条件逻辑所做的事情应该已经可以使用 LINQ 查询本身来实现。
这是我所拥有的:
'Get the Description elements in the ResultData section where the value is "Op Code"
Dim opCodes As List(Of XElement) = (From c In xdoc.Descendants("ResultData").Descendants("Description")
Where c.Value = "Op Code"
Select c).ToList()
If opCodes.Count > 0 Then
'Get the sibling XElement of the first "Description" XElement (there should be only one) by using the parent
sOperator = Convert.ToString(((From c In opCodes
Select c).FirstOrDefault().Parent).<Value>.Value)
Else
sOperator = "Not Available"
End If
请不要对我定位兄弟节点的方法过于挑剔——XML 文件是由第三方测试设备生成的,这是获取我需要的值的唯一通用方法。我真正在这里寻找的是处理 If 块的更好方法。
对此提出的任何想法将不胜感激。