LINQ-to-XML:选择特定节点值
<PKT>
<Result Name="GetBalance" Success="1">
<Returnset>
<Balance Type="int" Value="0" />
</Returnset>
</Result>
</PKT>
使用 LINQ-to-XML 获取 Balance
值的最佳方法?
<PKT>
<Result Name="GetBalance" Success="1">
<Returnset>
<Balance Type="int" Value="0" />
</Returnset>
</Result>
</PKT>
Best way to get the value of Balance
with LINQ-to-XML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以这样做。
我直接在这里输入代码,您可能需要确认是否有拼写错误。
You can do it this way.
I typed the code directly here, you may want to confirm any typos.
如果您只想从第一次出现的
Balance
中获取值,您可以这样做。If you wanted to only get the value from the first occurrence of
Balance
, you could do.