Example #1
0
 public override void WriteErrorLine(string value)
 {
     errStream.print(value);
     errStream.flush();
 }
Example #2
0
 public override void Write(char ch) => stream.print(ch);
Example #3
0
 public override int PromptForChoice(string caption, string message, Collection <ChoiceDescription> choices, int defaultChoice)
 {
     outStream.print(message);
     outStream.flush();
     return(1);
 }
Example #4
0
 public override void Write(char ch)
 {
     stream.print(ch);
     stream.flush();
 }