public ConsoleBuffer(int?width = null)
 {
     _lineCharRenderer = CsConsoleFormat.LineCharRenderer.Box;
     Width             = width ?? Console.BufferWidth;
     Height            = 0;
     ResetClip();
 }
Example #2
0
 public ConsoleBuffer (int? width = null)
 {
     _lineCharRenderer = CsConsoleFormat.LineCharRenderer.Box;
     Width = width ?? Console.BufferWidth;
     Height = 0;
     ResetClip();
 }