Beispiel #1
0
 public void Write(string text)
 {
     UIConsole?.Print(text);
     if (!startedPrinting)
     {
         startedPrinting = true;
     }
     LastOutput = text;
 }
Beispiel #2
0
 public void Put(string text)
 {
     if (putting)
     {
         UIConsole?.Print(State.FieldSeparator.Text);
     }
     UIConsole?.Print(text);
     putting = true;
     if (!startedPrinting)
     {
         startedPrinting = true;
     }
     LastOutput = text;
 }
Beispiel #3
0
 public void Print(string text)
 {
     if (startedPrinting)
     {
         UIConsole?.Print(State.RecordSeparator.Text);
     }
     else
     {
         startedPrinting = true;
     }
     UIConsole?.Print(text);
     putting    = false;
     LastOutput = text;
 }
Beispiel #4
0
 public void ConsolePrint(string text) => UIConsole?.Print(text);