Free() private method

private Free ( ) : void
return void
Esempio n. 1
0
 internal void End()
 {
     if (blocks != null)
     {
         blocks.Free();
     }
     blocks = null;
 }
Esempio n. 2
0
 internal int End()
 {
     if (blocks != null)
     {
         blocks.Free();
     }
     blocks = null;
     return(ZlibConstants.Z_OK);
 }
Esempio n. 3
0
 public override void Close()
 {
     z.Free();
     z       = null;
     _stream = null;
 }