M
Meelis Lilbok
Hi is for synchronizing two xml files any fast solution?
Lets say i have 2 xml files 1.xml and 2.xml
1.xml contianes
<test>
<t id="1">Hello</t>
<t id="2">World</t>
<t id="3">Good bye!</td>
</test>
2.xml containes
<test>
<t id="1">Hello</t>
<t id="2">World</t>
</test>
After synchronizing 2.xml must look likt this
<test>
<t id="1">Hello</t>
<t id="2">World</t>
<t id="3">Good bye!</td>
</test>
At the moment i use
For Each
Next
and this is too slow, if file containes about 1000 <t> nodes
Regards;
Meelis
Lets say i have 2 xml files 1.xml and 2.xml
1.xml contianes
<test>
<t id="1">Hello</t>
<t id="2">World</t>
<t id="3">Good bye!</td>
</test>
2.xml containes
<test>
<t id="1">Hello</t>
<t id="2">World</t>
</test>
After synchronizing 2.xml must look likt this
<test>
<t id="1">Hello</t>
<t id="2">World</t>
<t id="3">Good bye!</td>
</test>
At the moment i use
For Each
Next
and this is too slow, if file containes about 1000 <t> nodes
Regards;
Meelis