SmartAssembly.Zip.SimpleZip.Zip C# (CSharp) Method

Zip() public static method

public static Zip ( byte buffer ) : byte[]
buffer byte
return byte[]
        public static byte[] Zip(byte[] buffer)
        {
            return Zip(buffer, 1, null, null);
        }

Same methods

SimpleZip::Zip ( byte buffer, int version, byte key, byte iv ) : byte[]