重构 XML 文件中的读取元素 - C#

发布于 2024-11-04 04:06:10 字数 205 浏览 0 评论 0原文

我可以重构以下读取 XML 文件中元素的代码吗:

if (!(xmlDoc.Element("Element1").Element("Element2").Element("Element3").Element("Element4").Element("Element5").Element("Element6") == null))
{

}

Can I refactor the following piece of code reading elements in an XML file:

if (!(xmlDoc.Element("Element1").Element("Element2").Element("Element3").Element("Element4").Element("Element5").Element("Element6") == null))
{

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘦怹 2024-11-11 04:06:10

尝试使用XPath表达式来查找您想要的元素,您提交的这段代码很容易抛出意外的NullReferenceException,而您可能不希望catch

像这样的:

if (xPath.evaluate("count(/Element1/Element2/Element3/Element4)", xmlDoc) > 0)
{
}

PS。
为什么要否定 == null 的表达式?更好的可读性和可维护性是 != null ,在布尔表达式中没有否定和尾随 ()

Try use XPath expression for find element what you want, this code who you submited can easly throw unexpected NullReferenceException who probably you don't want catch.

Something like this:

if (xPath.evaluate("count(/Element1/Element2/Element3/Element4)", xmlDoc) > 0)
{
}

PS.
Why you negating expression of == null? Better readable and maintainable is != null without negation and trailing () in your boolean expression.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文