public static bool HasSwitch(string strName)
 {
     CommandLine.Initalize();
     return(CommandLine.switches.ContainsKey(strName));
 }
 public static Dictionary <string, string> GetSwitches()
 {
     CommandLine.Initalize();
     return(CommandLine.switches);
 }