Extension methods for compressing/decompressing string
Serialization Overhead When it comes to serializing/deserializing objects for transport through the wire, you will most likely incur some overhead in the serialized message though the amount of overhead varies depends on the data interchange format used – XML is overly verbose where as JSON is much more light-weight: XML representation: JSON representation: {“MyProperty”:10} As …
Extension methods for compressing/decompressing string Read More »