处理 XElement null 值
我有一个正在查询的 xml。其中一个节点丢失。因此,当我调用 XElement.Value 时,我得到一个 null 异常。
防止这种情况的最佳方法是什么?我知道我可以编写一个扩展方法,但我想知道语言中是否有为此构建的东西?
I have an xml that I am querying. One of the nodes is missing. So when I call XElement.Value I get a null exception.
What is the best way to guard against this? I know I can write an extension method, but I am wondering is there something build into the language for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 null 合并运算符
??
给定一个
XElement
elem:use the null coalesce operator
??
Given an
XElement
elem: