Esempio n. 1
0
 public static void EnterCommand(string command)
 {
     if (!InputLine.IsSuggestionModeEnabled)
     {
         InputLine.AddInput(command);
     }
     else
     {
         InputLine.AddInputToCopy(command);
     }
     CommandHandler.ExecuteLine(command);
 }