Brotli in .NET
BrotliĀ is a compression algorithm like GZip – it tends to have smaller compressed files at the expense of a small amount of extra time. Implementing in .NET is just as easy as with GZip: public class Brotli{ public static void Compress(Stream inputStream, Stream outputStream) { using var gzip = new BrotliStream(outputStream, CompressionMode.Compress); byte[] buffer = […]