What is the advantage of Serialization ?

Showing Answers 1 - 5 of 5 Answers

ashwani kumar

  • Nov 25th, 2005
 

serialization is the process of maintaing object in the form stream.it is useful in case of remoting.

  Was this answer useful?  Yes

swag

  • Dec 22nd, 2005
 

Serialization is the process of converting object into byte stream which is useful to transport object(i.e remoting),persisting object(i.e files,database)

  Was this answer useful?  Yes

SREEKANTH

  • Oct 18th, 2006
 

SERIALIZATION IS PROCESS OF LODING THE OBJECT STATE IN THE FORM OF BYTE STREAMS IN DATABASE/FILE SYATEM.

  Was this answer useful?  Yes

san82

  • Apr 15th, 2009
 

Serialization in .NET allows the programmer to take an instance of an object and convert it into a format that is easily transmittable over the network, or even stored in a database or file system. This object will actually be an instance of a custom type, including any properties or fields you may have set

  Was this answer useful?  Yes

jaya

  • Nov 4th, 2011
 

Serialization is a process of converting an object into a stream of data so that it can be is easily transmittable over the network or can be continued in a persistent storage location.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions