I have a string:
Dim strXMLTags As String = "<tags><test>1</test></tags>"
And I want to verify that all opening tags have a closing tag in the proper place. So if I put the previous string through, it'd work. However, if I put:
Dim strXMLTags As String = "<tags><test>1</test>"
Then I want it to give me an error. Is there an XML structure checker or something of the sorts? Or should I just try and load it to an XML document and if it errors then, then I know. Thanks.