what is serialization in .Net
+8
A:
Serialization, which is not specific to .NET, is the process of converting an in-memory object into some form of bits and bytes that are suitable for transmission (e.g. over the internet) or storage (e.g. on disk).
The complement to serialization is deserialization which takes the serialized data and reconstitutes the original object representation.
Chris Schmich
2010-05-28 07:01:47
+1 for just answering the question.... give it a few weeks and when people search google for "What is serialization" they may well end on this page.
Dal
2010-05-28 07:30:48