System.util.zlib.ZDeflaterOutputStream.End C# (CSharp) Method

End() public method

public End ( ) : void
return void
        public void End()
        {
            if(z==null)
                return;
            z.deflateEnd();
            z.free();
            z=null;
        }