Пример #1
0
 ///
 public BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType)
 {
     this.character       = character;
     this.foregroundColor = foreground;
     this.backgroundColor = background;
     this.bufferCellType  = bufferCellType;
 }
Пример #2
0
 ///
 public BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType)
 {
     this.character = character;
     this.foregroundColor = foreground;
     this.backgroundColor = background;
     this.bufferCellType = bufferCellType;
 }
Пример #3
0
 public BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType) { throw new NotImplementedException(); }
Пример #4
0
 public BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType)
 {
     throw new NotImplementedException();
 }
Пример #5
0
 BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType)
 {
     Character = character;
     ForegroundColor = foreground;
     BackgroundColor = background;
     BufferCellType = bufferCellType;
 }