Exemplo n.º 1
0
        public static string Execute(string[] tokens)
        {
            // incorrect number of tokens?
            if (tokens.Length != 1)
            {
                return("[Error] You must provide a path to a function/method to execute.");
            }

            return(CommandHelpers.Execute(tokens[0], tokens, 1));
        }