private static void SampleMain(string[] args) { var helper = new AppBuilder(); helper.AddStartupParameter("-s", () => Console.WriteLine("You type s in args")); helper.AddCommand("comm", () => "You enter comm"); helper.Run(args); // OR FAST RUN WITHOUT COMMANDS // AppBuilder.FastRun(true, args); }