Esempio n. 1
0
 public static RCLArgv Init(string[] argv)
 {
     if (_initInvoked)
     {
         throw new InvalidOperationException("RCLArgv.Init may only be invoked once per appDomain");
     }
     _instance    = new RCLArgv(argv);
     _initInvoked = true;
     return(_instance);
 }
Esempio n. 2
0
 public static void Reconfigure(RCLArgv args)
 {
     Args = args;
     Log  = new RCLogger(Args.NoKeys, Args.Show, Args.Hide);
     Log.SetVerbosity(Args.OutputEnum);
 }