internal bool AddArg(string text) { Arg arg = Arg.Create(text); if (arg == null) { return(false); } args.Add(arg); return(true); }