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 />)

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Use IsEmptyElement property

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.