Guest User
What is serialization?
By Guest User in C# on Aug 01 2014
  • Guest User
    Aug, 2014 1

    To transport object over network we need to convert into stream of bytes. The process of conversion is serialization and vice-versa is deserialization.

    • 4
  • Sunil Gaded
    Aug, 2014 28

    The process of converting the object into the stream of bytes.... ex: i have image in the picturebox and i need to store in database,so we need to convert into the stream of bytes and store it into the DB..

    • 1
  • Mageshwaran R
    Nov, 2018 29

    It is Convert Object to bytes stream for sharing on Network.

    • 0
  • Sanjay Sabariya
    Jun, 2015 3

    Convert object into bytes stream for sharing on network.

    • 0
  • Kml Surani
    Apr, 2015 14

    Serialization is the process of converting an object into a stream of bytes in order to store the object or transmit it to memory, a database, or a file. Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called deserialization.

    • 0
  • Abrar Ahmad Ansari
    Mar, 2015 10

    refer below linkhttps://msdn.microsoft.com/en-IN/library/ms233843.aspxhttp://www.codeproject.com/Articles/36781/Serialization-and-Deserialization-in-ASP-NET-with

    • 0
  • Gokul Rathod
    Nov, 2014 25

    Convertion of C# object to Json Object

    • 0
  • Ankur Jain
    Aug, 2014 18

    I think the most common use of the term serialization has to do with converting a binary object into an XML (or other string) representation so that it can be stored in a database/file or sent across a network in a web service call. Deserialization is the reverse process - converting an XML/string back into an object.Another term you might come across is marshalling/unmarshalling. Marshalling is basically the same concept as serializing, and unmarshalling is the same as deserializing.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS