Hi, I am currently using the binary formatter (Remoting) to serialize/deserialize objects for sending around my LAN.
I have recently upgraded from 2.0 to .Net 3.5, has 3.5 introduced any new types to improve serialization performance?
I’ve looked at the DataContractSerializer but this serializes anything to underlying xml right … which must increase the memory footprint.
So my question is; what’s the fastest serializer for sending objects across my LAN? I don’t care a about interop or versioning …. I need speed!
/I am open to 3rd party open source alternatives.
Thanks a lot.