Esempio n. 1
0
    public string Mode(List <string> arguments)
    {
        string newWorkMode = arguments[0];

        WorkMode.TryParse(newWorkMode, out this.workMode);

        return($"Successfully changed working mode to {this.workMode} Mode");
    }