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); }
public static void Reconfigure(RCLArgv args) { Args = args; Log = new RCLogger(Args.NoKeys, Args.Show, Args.Hide); Log.SetVerbosity(Args.OutputEnum); }