IMain() public method

public IMain ( string args ) : void
args string
return void
Esempio n. 1
0
 static void Main(string[] args)
 {
     try
     {
         AdsImportPrep p = new AdsImportPrep();
         p.IMain(args);
     }
     catch (Exception ex)
     {
         Console.Error.WriteLine(ex.Message + " :: " + ex.StackTrace);
         System.Environment.ExitCode = 1;
     }
 }
Esempio n. 2
0
 static void Main(string[] args)
 {
     try
     {
         AdsImportPrep p = new AdsImportPrep();
         p.IMain(args);
     }
     catch (Exception ex)
     {
         Console.Error.WriteLine(ex.Message + " :: " + ex.StackTrace);
         System.Environment.ExitCode = 1;
     }
 }