views:

34

answers:

1

recently i read about interface iclonable,in that i studied about serialization and marshalling i like to know about that with examples.

+1  A: 

Serialize -A process of converting memory object into binary data/text so that it can be stored on disc. Deserialize - the reverse of serialization. A process of taking binary data/text from disk and converting it into object in memory. .Net Example

wikipedia: Serialization

Marshaling - a process of passing data between "program" boundaries, like from managed to unmanaged, from one process to another, etc.

wikipedia: Marshaling

Alex Reitbort