System.util.zlib.InfBlocks.free C# (CSharp) Method

free() private method

private free ( ZStream z ) : void
z ZStream
return void
        internal void free(ZStream z){
            reset(z, null);
            window=null;
            hufts=null;
            //ZFREE(z, s);
        }

Usage Example

 internal int inflateEnd(ZStream z){
     if(blocks != null)
         blocks.free(z);
     blocks=null;
     //    ZFREE(z, z->state);
     return Z_OK;
 }