Esempio n. 1
0
 public Cell WithColors(ColorPair c) => new Cell(Char, c.Fore, c.Back);
Esempio n. 2
0
 public Cell(char?c, ColorPair colors) : this(c, colors.Fore, colors.Back)
 {
 }