Example #1
0
 public void start()
 {
     if (!validArguments)
     {
         return;
     }
     startTime = DateTime.Now.Ticks;
     md        = new multi_downloader(file_list, dest_dir, threadResetEvent, (int)(flags["threads"]));
     md.process();
     started = true;
 }
 public void start()
 {
     if (!validArguments) return;
     startTime = DateTime.Now.Ticks;
     md = new multi_downloader(file_list, dest_dir, threadResetEvent, (int)(flags["threads"]));
     md.process();
     started = true;
 }