Exemplo n.º 1
0
        private void AllModesOff()
        {
            Console.WriteLine("$AllModesOff: " + ForeColor + "-->" + DefaultForeColor);
            ForeColor = DefaultForeColor;

            BackColor  = DefaultBackColor;
            Attributes = ConsoleCharAttributes.None;
        }
Exemplo n.º 2
0
 public ConsoleCharInfo(ConsoleCharUnion @char, ConsoleCharAttributes attributes)
 {
     this.Char       = @char;
     this.Attributes = attributes;
 }
Exemplo n.º 3
0
 public ConsoleCharInfo(ConsoleCharUnion @char)
 {
     this.Char       = @char;
     this.Attributes = default;
 }