Ejemplo n.º 1
0
 public static void quit(ProcessWrapper proc)
 {
     proc.sendLine("quit");
     proc.readNextLine();
     proc.stopAllReadingAndQuit();
 }
Ejemplo n.º 2
0
 //command_name OR, just the entire command (created from above or manually)
 public static void SendCommand(string command_name, ProcessWrapper proc)
 {
     proc.sendLine(command_name);
 }