Serializing
Objects in C#
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. it's
a process of reading objects from a file where they have been stored.
In this code sample we will see how to serialize and deserialize
objects using C#.
Comments
Post a Comment