我需要一些帮助来返回属性的不同值。我试图用谷歌搜索我的方式,但没有那么成功。
我的 xml 是这种格式:
<?xml version="1.0" encoding="utf-8"?>
<threads>
<thread tool="atool" process="aprocess" ewmabias="0.3" />
<thread tool="btool" process="cprocess" ewmabias="0.4" />
<thread tool="atool" process="bprocess" ewmabias="0.9" />
<thread tool="ctool" process="aprocess" ewmabias="0.2" />
</threads>
我想返回不同的工具和流程属性。我确实更喜欢 linq 解决方案。
IEnumerable<XElement> singlethread = apcxmlstate.Elements("thread");
.. mytool = 包含不同工具的数组/列表,即 {atool, btool, ctool}
感谢任何帮助。