Fan.Sys.Zip.close C# (CSharp) Méthode

close() public méthode

public close ( ) : bool
Résultat bool
        public bool close()
        {
            try
              {
            if (m_zipFile != null) m_zipFile.Close();
            if (m_zipIn != null)   m_zipIn.Close();
            if (m_zipOut != null)  m_zipOut.Close();
            return true;
              }
              catch (System.IO.IOException)
              {
            return false;
              }
        }