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 type
OBJClass Obj = (OBJClass)obj;
If you have a hot tip and we publish it, we'll pay you. However, due to accounting overhead we no longer pay $10 for a single tip submission. You must accumulate 10 acceptable tips to receive payment. Be sure to include a clear explanation of what the technique does and why it's useful. If it includes code, limit it to 20 lines if possible.
Submit your tip here.