Serialization of a Hashtable

  • Thread starter Thread starter Curtis
  • Start date Start date
C

Curtis

Does anyone have any examples of serializing a hashtable? I tried to make a
copy of the hash table using the .clone method but per MS documention it
creates a shallow copy of the object. I am trying to make a full or deep
copy of the master hashtable any examples would be great.

Thanks,
Curtis
 
Thanks Cor that works great, I was trying to serialize before with just a
memorystream and getting serialization errors. Your method worked great.

Thanks again,
Curtis
 
Back
Top