A command line archiver using the SharpZipLib compression library
 /// <summary>
 /// Entry point for program, creates archiver and runs it
 /// </summary>
 /// <param name="args">
 /// Command line argument to process
 /// </param>
 public static void Main(string[] args)
 {
     SharpZipArchiver sza = new SharpZipArchiver();
     sza.Execute(args);
 }
Example #2
0
        /// <summary>
        /// Entry point for program, creates archiver and runs it
        /// </summary>
        /// <param name="args">
        /// Command line argument to process
        /// </param>
        public static void Main(string[] args)
        {
            SharpZipArchiver sza = new SharpZipArchiver();

            sza.Execute(args);
        }