Exemplo n.º 1
0
 public void LocalOutputMsg(string msg)
 {
     foreach (char chr in msg)
     {
         ScreenChar screenChr = new ScreenChar(char.ToUpper(chr), CharAttributes.Message);
         //OutputBufferEnqueue(screenChr);
         Output?.Invoke(screenChr);
     }
 }
Exemplo n.º 2
0
 public void LocalOutputEnqueue(ScreenChar screenChar)
 {
     _localOutputBuffer.Enqueue(screenChar);
 }