Serialize and Deserialize an Object Instance to XML

Serialize and Deserialize an Object Instance to XML

To serialize an object instance to XML, you need to use the XMLSerializer class’s Serialize method. The code snippet below demonstrates:

XmlSerializer xmlSer = new XmlSerializer(objInstance.GetType());System.Text.StringBuilder sb = new System.Text.StringBuilder();System.IO.StringWriter writer = new System.IO.StringWriter(sb);xmlSer.Serialize(writer, objInstance);XmlDocument doc = new XmlDocument();doc.LoadXml(sb.ToString());

To deserialize the serialized XML back to an object instance, you need to use the XMLSerializer Class’s DeSerialize method:

XmlNodeReader reader = new XmlNodeReader(doc.DocumentElement);XmlSerializer xmlSer = new XmlSerializer(objType);object obj = xmlSer .Deserialize(reader);//Cast the object to respective typeOBJClass Obj = (OBJClass)obj;
Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular