Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I can use Xml writer to write any Xml document but can we write again using Xml Writer.


If so how to do this
Posted
Comments
nandakishoreroyal 17-Mar-14 8:31am    
try creating another new object for XmlWriter.
KUMAR619 17-Mar-14 8:33am    
How to do ;

Can you get me a code snippet
CHill60 17-Mar-14 8:37am    
XmlWriter x = new XmlWriter(); //First time
x = new XmlWriter(); //2nd time
nandakishoreroyal 17-Mar-14 8:54am    
XmlWriter x = new XmlWriter();
//bla bla Your Code

// In between add another XmlWriter

XmlWriter y = new XmlWriter();

//bla bla your code

//close y

//and close x

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900