Exemplo n.º 1
0
 ///
 public BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType)
 {
     this.character       = character;
     this.foregroundColor = foreground;
     this.backgroundColor = background;
     this.bufferCellType  = bufferCellType;
 }
Exemplo n.º 2
0
 ///
 public BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType)
 {
     this.character = character;
     this.foregroundColor = foreground;
     this.backgroundColor = background;
     this.bufferCellType = bufferCellType;
 }
Exemplo n.º 3
0
 public BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType) { throw new NotImplementedException(); }
Exemplo n.º 4
0
 public BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 5
0
 BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType)
 {
     Character = character;
     ForegroundColor = foreground;
     BackgroundColor = background;
     BufferCellType = bufferCellType;
 }