XmlTextReader 能否区分之间的区别?和<标签>;

发布于 2024-09-07 11:12:51 字数 110 浏览 7 评论 0原文

我正在使用 XMLTextReader 读取 XML 文件。有没有办法区分开始标签(如 )和自终止标签(如

I am reading an XML file using an XMLTextReader. Is there a way to tell the difference between a start tag (like <tag>) and a self-terminating tag (like <tag />)

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

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

发布评论

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

评论(2

岁月静好 2024-09-14 11:12:52

如果您指的是 之间的区别,那么答案是否定的,因为两者在 XML 中是等效的,并且您不应该在代码中依赖于此。

If you mean the difference between <tag></tag> and <tag />, then the answer is no, as both are equivalent in XML, and you should not depend on this in your code.

零崎曲识 2024-09-14 11:12:52

使用 IsEmptyElement 属性

Use IsEmptyElement property

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