Serialization of an object

Posted by sandhya on Stack Overflow See other posts from Stack Overflow or by sandhya
Published on 2010-03-12T03:43:43Z Indexed on 2010/03/12 3:47 UTC
Read the original article Hit count: 179

Filed under:

Hi I am Serialing an object using

         GetObjectData(SerializationInfo info, StreamingContext context)
           {
               info.AddValue("string1",subobject1);
               info.AddValue("string2",subobject2);
           }

what will be stored in stream? do the strings also store?

© Stack Overflow or respective owner

Related posts about c#