How to compress and decompress strings in C#
When developing applications you will often need to deal with strings. And because string objects are costly in terms of performance, you will often want to compress your string content, ie, the data inside your string objects, to reduce the payload. There are several libraries available to do this but two popular techniques are GZip … Read more