Example #1
0
 public void Execute(string name, params string[] args) => _allCommands.Execute(name, args);
Example #2
0
 public static void Execute(this ICliCommands commands, string[] args) => commands.Execute(args[0], args.Skip(1).ToArray());
 public void Execute(string name, string[] args) => _inner.Execute(name, args);