NET - Explain why we use XML Serialization

Explain why we use XML Serialization.

Serialization allows persisting objects. XML serializations stores objects in form of XML which has become a storage standard. The main advantage with XML is that it is platform, language independent. Any other software can practically read XML and write data, hence interoperability is an added advantage with XML serialization. XML also has the power to show relationships between various objects which is also advantageous when performing serialization of objects along with other related objects.
NET - Explain how to use XML to Serialize an object.
Explain how to use XML to Serialize an object - Use the namespace “System.Xml.Serialization”......
NET - Explain how to use XML to deserialize an object.
Explain how to use XML to deserialize an object - XmlSerializer srl = new XmlSerializer(typeof(Class1));......
NET - Debug Build vs. Release build in .NET
Debug Build vs. Release build in .NET - In Debug mode, You can use the development environment's integrated debugging functions.......
Post your comment