Ejemplo n.º 1
0
        private static void AnalyseCall(string word)
        {
            if (Filter.Analyse(word, out string analysedWord))
            {
                BadBoyLogger.LogInfo($"{word} -> {analysedWord}");

                SendKeys.Send("^{BACKSPACE}");
                SendKeys.Send(analysedWord);
            }
            else
            {
                BadBoyLogger.LogInfo($"{word} is clear");
            }
        }