Exemplo n.º 1
0
        public override string[] Complete(Shell shell, string[] tokens)
        {
            var args = new CompleteShellCommandEventArgs(shell, tokens);

            CompleteCommand?.Invoke(this, args);
            return(args.Result);
        }
Exemplo n.º 2
0
 public override string[] Complete(Shell shell, string[] tokens)
 {
     var args = new CompleteShellCommandEventArgs(shell, tokens);
     CompleteCommand?.Invoke(this, args);
     return args.Result;
 }