XmlTextReader 能否区分和之间的区别?和<标签>;
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您指的是
和
之间的区别,那么答案是否定的,因为两者在 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.使用 IsEmptyElement 属性
Use IsEmptyElement property