staticVoid
July 8th, 2008, 07:29 AM
hi, I'm trying to implement a generic serializer interface where each implementation is responsible for serializing some provided data, examples of implementation could be xml, binary etc. where the object would pass its data to a standard interface and each implementation would serialize the data differently.
Does anyone know of any good examples of this type of interface? all I can find is an ISerializable interface where each object must implement a serialize and deserialize method.
Does anyone know of any good examples of this type of interface? all I can find is an ISerializable interface where each object must implement a serialize and deserialize method.