Exemple #1
0
        public static void EnableAdditionalInputInfo()
        {
            inputInfoEnabled = true;

            if (hinter == null)
            {
                hinter = new Hinter();
            }
        }
Exemple #2
0
 private static void CommandSEARCHKANJI(string[] args)
 {
     if (args.Length > 0)
     {
         if (hinter == null)
         {
             hinter = new Hinter();
         }
         mainWindow.WriteLine(hinter.FindWords(args[0]));
         mainWindow.SetInputValue($"");
     }
 }
Exemple #3
0
 private static void CommandSEARCH(string[] args)
 {
     if (args.Length > 0)
     {
         if (hinter == null)
         {
             hinter = new Hinter();
         }
         mainWindow.WriteLine(hinter.FindWordsByMeaning(string.Join(" ", args)));
         mainWindow.SetInputValue($"");
     }
 }