vb.net - What is the best way to read an XML file from Embedded resources? -
dim xmldoc new xmldocument() dim xmlnode xmlnodelist dim integer dim str string xmldoc.loadxml("countybyregion.xml")
this throws
an exception of type 'system.xml.xmlexception' occurred in system.xml.dll not handled in user code. additional information: data @ root level invalid. line 1, position 1.
i
dim fsxml new filestream("countybyregion.xml", filemode.open, fileaccess.read)
and use xmldoc.load(fsxml)
Comments
Post a Comment