我有一个如下的 XML:
<Nodes>
<Node>
<A>This is a dummy text {12345}</A>
<B>Output Value</B>
</Node>
<Node>
<A>This is another dummy text {3462832}</A>
<B>Output Value</B>
</Node>
</Nodes>
我正在使用 Linq to XML,如果节点“A”中的文本包含键“12345”,我想选择节点“B”中的输出值
请提供用于实现此目的的 LINQ 查询的输入。
谢谢 !!