
Serialization is used to convert an object into a byte stream. This is usually done to store the object in the memory, database or a file and retrieve the state of the object later. This reverse process is called de-serialization.
To make a type serialize, you need to apply SerializeAttribute to it. If you haven't specify the attribute and when...