Execute() private method

Parse command line arguments and 'execute' them.
private Execute ( string args ) : void
args string
return void
Exemplo n.º 1
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)
        {
            ZipFileArchiver zf = new ZipFileArchiver();

            zf.Execute(args);
        }
Exemplo n.º 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) 
		{
			ZipFileArchiver zf = new ZipFileArchiver();
			zf.Execute(args);
		}