Beispiel #1
0
        static public string ToActions(string input)
        {
            string cmd = String.Empty;
            Dictionary <string, string> activeCommands = CommandDictonary.Actions();

            if (activeCommands.ContainsKey(input))
            {
                //DeBugging.Print("Found Input    : " + input);
                //DeBugging.Print("Command Equals : " + activeCommands[input]);
                cmd = activeCommands[input];
            }
            return(cmd);
        }