N
Nick Z.
Lets say you have the following xml document
<?xml version="1.0" encoding="utf-16"?>
<log>
<event>Some event #1</event>
</log>
How would I add another <event> element to this document?
Asume that the file size is already 200kb or more.
Using XmlDocument class is not very efficient as far as I see.
Using the XmlTextWriter you can only append to the end of the file,
hence breaking the xml structure.
How would I do this?
Thanks,
Nick Z.
<?xml version="1.0" encoding="utf-16"?>
<log>
<event>Some event #1</event>
</log>
How would I add another <event> element to this document?
Asume that the file size is already 200kb or more.
Using XmlDocument class is not very efficient as far as I see.
Using the XmlTextWriter you can only append to the end of the file,
hence breaking the xml structure.
How would I do this?
Thanks,
Nick Z.