Serialization is the process of converting an object into a stream of bytes which is easily transferable over the network and storing its current state on any permanent storage media like file or database for later use. De-serialization is the reverse process of Serialization, where the stored object is taken and the original object is recreated.
.NET provides classes through its System.Runtime.Serialization namespaces that can be used for serializing and de-serializing objects.
Read the complete article here.
.NET provides classes through its System.Runtime.Serialization namespaces that can be used for serializing and de-serializing objects.
Read the complete article here.
Comments