+1 vote
in Dot Net by

What is serialization?

1 Answer

0 votes
by

When we want to transport an object through network then we have to convert the object into a stream of bytes. The process of converting an object into a stream of bytes is called Serialization. For an object to be serializable, it should implement ISerialize Interface. De-serialization is the reverse process of creating an object from a stream of bytes.

Related questions

+1 vote
asked Jun 25, 2019 in Dot Net by Venkatshastri
+1 vote
+1 vote
asked Jun 25, 2019 in Dot Net by Venkatshastri
...