public static string Execute(string[] tokens) { // incorrect number of tokens? if (tokens.Length != 2) { return("[Error] You must provide a path to a variable/property set and a value to set."); } return(CommandHelpers.SetValue(tokens[0], tokens[1])); }