robertvazan / snappy.net

.NET wrapper for Snappy compression algorithm.

Home Page:https://snappy.machinezoo.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Snappy for .NET

UNMAINTAINED: This library is no longer maintained, because I rarely use Windows or C++ these days. It has not been updated in years. You are welcome to adopt the library if you find it useful.

Snappy.NET is a .NET wrapper for Snappy compression algorithm. It includes raw block compression as well as an implementation of Snappy framing format.


using (var file = File.OpenWrite("mydata.sz"))
using (var compressor = new SnappyStream(file, CompressionMode.Compress))
using (var writer = new StreamWriter(compressor))
    writer.WriteLine("Hello World!");

About

.NET wrapper for Snappy compression algorithm.

https://snappy.machinezoo.com/

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C# 100.0%