Introduction: Before going in detail, let's discuss what is Serialization & Deserialization in .net? Serialization is a process of converting an object into stream of bytes. Whereas deserialization is other way around. i.e converting stream of bytes into objects. Here are some examples where we see the need of Serialization - A set of objects …
Continue reading Serialization & Deserialization in .net and it’s internals