Serialization is a process of storing state of an object to some media like disk file or stream. .NET further provides a way to serialize objects in XML format. Thus objects can be converted into XML documents (serialization)...
In simple words serialization is a process of storing the object instance to a disk file. Serialization stores state of the object i.e. member variable values to disk. Deserialization is reverse of serialization i.e. ...