devxlogo

Serialize and Deserialize an Object to an XML File in C# 2.0

The example in this tip uses an ArrayList object to serialize, deserialize, and store itself in an XML file. However, you can also use user-defined objects. First, add items to an ArrayList object:

ArrayList myItems = new ArrayList(); myItems.Add("item1");myItems.Add("item2");myItems.Add("item3");

Next, you need to serialize the myItems object and store it in a file named myItems.xml:

System.Xml.Serialization.XmlSerializer serializer =   new System.Xml.Serialization.XmlSerializer(typeof(ArrayList));System.IO.TextWriter writer =   new System.IO.StreamWriter("myItems.xml", false);serializer.Serialize(writer, myItems);writer.Close();

Finally, deserialize the same object from myItems.xml:

System.Xml.Serialization.XmlSerializer serializer =   new System.Xml.Serialization.XmlSerializer(typeof(ArrayList));System.IO.TextReader reader =   new System.IO.StreamReader("myItems.xml");ArrayList ObjItems = (ArrayList)serializer.Deserialize(reader);reader.Close();

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.