Beispiel #1
0
 public ZInputStream(InputStream @in, bool nowrap) : base(@in)
 {
     this.@in = @in;
     z.InflateInit(nowrap);
     compress        = false;
     z.next_in       = buf;
     z.next_in_index = 0;
     z.avail_in      = 0;
 }
Beispiel #2
0
 public ZOutputStream(OutputStream @out) : base()
 {
     this.@out = @out;
     z.InflateInit();
     compress = false;
 }