Create XML element without closing tag using Visual C++
Visual Studio
3
Posts
2
Posters
3
Views
1
Watching
-
I know how to create xml element with closing tag (using WriteStartElement and WriteEndElement methods)
<tag id="1234">
</tag>but is there a way in Visual C++ to produce xml element like this
<tag id="1234"/>
i.e. without closing tag?
WriteEndElement should have detected the element has no child or text and close it properly. What library are you using?
-
WriteEndElement should have detected the element has no child or text and close it properly. What library are you using?