This is a discussion on How to serialize an xml file in C#? Is any easy way for serialization? within the C# Programming forums, part of the Software Development category; How to serialize an xml file in C#? Is any easy way for serialization? Hi all, I need to serialize ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| How to serialize an xml file in C#? Is any easy way for serialization? Hi all, I need to serialize an xml file in c#. Can anybody help me? Last edited by mobilegeek : 07-30-2007 at 05:25 AM. |
| Sponsored Links |
| |||
| Hi , We can serialize an xml file using the XMLSerializer class in .Net. First we need to create a property class for that xml file. Here is the example for serialization in C#. XmlSerializer serializer = new XmlSerializer(typeof(myClass)); // myClass is the property class for the xml. string path = Environment.CurrentDirectory + "test.xml"; TextWriter writer = new StreamWriter(path); serializer.Serialize(writer, myClassObj); writer.Close(); Hope informative |
| |||
| Hi, I used the above code for serialise the xml file... Its worked perfectly...How can we deserialise it.... Can u give sample code for it...
__________________ Krishnakumar.S Beware of Everything -that is un true; stick to the Truth shall succeed slowly but steadily |
| |||
| Hi, The reverse process of Serialization is De Serialization. Simply do as following, FileStream fs = File.OpenRead(Environment.CurrentDirectory + "\\test.xml"); myClassObj=(myClass)serializer.Deserialize(fs); That's it...
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Easy Property Class Generator for DOTNET Developers | Anandavinayagam | ASP and ASP.NET Programming | 4 | 01-16-2008 03:54 AM |
| Easy way to improve Google ranking?? | ammulu | 0 | 12-26-2007 06:57 PM | |
| Creating easy site wide links through css | bermuda | HTML, CSS and Javascript Coding Techniques | 0 | 10-12-2007 05:18 AM |
| Is it getting easy? | googoo | General Web hosting Discussions | 5 | 03-28-2007 08:31 AM |
| What SPAM means in easy word? | montyauto | Advertising Sales and Affiliate Programs | 5 | 03-14-2007 11:35 PM |