XML SERIALIZATION IN C#.NET

SERIALIZATION Serialization is the process of turning an object in memory into a stream of byte so you can do stuff like store it on disk or send it over the network. A C# object can be serialized to XML as specified- ⦁ To use Serialization in xml we need XmlSerializer class. ⦁ This class is derived from System.Xml.Serialization. ⦁ Only public objects can be serialized in XML serialization # How to do XML Serialization? *There are many ways in …