コード例 #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
ファイル: Zoo.cs プロジェクト: pezipink/FarNet
 ///
 public BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType)
 {
     this.character = character;
     this.foregroundColor = foreground;
     this.backgroundColor = background;
     this.bufferCellType = bufferCellType;
 }
コード例 #3
0
ファイル: BufferCell.cs プロジェクト: mauve/Pash
 public BufferCell(char character, ConsoleColor foreground, ConsoleColor background, BufferCellType bufferCellType) { throw new NotImplementedException(); }
コード例 #4
0
ファイル: BufferCell.cs プロジェクト: JamesTryand/Pash2
 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;
 }