Click here to Skip to main content
15,881,380 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How do I write graphicsPath data into a xml File, reconstructing graphics path by reading the XML file without using XMLserialization?

Please give the code in C#.
Posted
Updated 14-Nov-11 3:49am
v4
Comments
Mehdi Gholam 11-Nov-11 1:00am    
What's wrong with xml serialization?
M Kiran Kumar 11-Nov-11 13:33pm    
I want to write manually.using WriteElementString,WriteAttribue methods...etc

1 solution

The easiest way to read or write XML programatically is LINQ to XML[^], but that won't work in C#1.0.

Look up the XmlDocument class and see how data is read and written that way. It's a bit laborious, but not too bad.
 
Share this answer
 
v2
Comments
M Kiran Kumar 15-Nov-11 12:03pm    
Ok no problem...can u tell me how to use Linq to xml....

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