Implementation of the LZW algorithm in C#, adhering to the built-in System.IO.Compression.
The algorithm and code is much improved, compared to projects like SharpLZW.
The LZW algorithm is for arbitrary lossless data compression and are noticeable for simplicity and low (compared to others) memory consumption. Making it interesting for eg. embedded use.
There're many other LZW implementations out there. This one is focused on KISS and C#.