Passing arguments when deserializing objects

  • Thread starter Thread starter Neal Andrews
  • Start date Start date
N

Neal Andrews

Hi All,

I have an object that gets serialized, now when the object gets deserialized
I what to be able to pass it an object reference which is not serialized and
is used internally by the class. Does anyone now how I can pass an object
reference to the class when it is being deserialized. I am using the
BinaryFormatter classes to serialize/deserialize the objects.

Thanks
Neal
 
Neal,

You will need to roll you own interface for the serialization and
deserialization of your objects.

Dan
 
Back
Top