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? How will be the exact storage format in Stream??
BinaryFormattermakes no promises here.