Dummy escape sequence parser. Can only parse color codes. Anything other than color will probably will Must be able to parse other stuff.
Inheritance: System.IO.TextWriter
Esempio n. 1
0
 private EscapeSequencer(TextWriter textWriter)
 {
     Instance = this;
     this.textWriter = textWriter;
     defaultForegroundColor = Console.ForegroundColor;
     defaultBackgroundColor = Console.BackgroundColor;
 }
Esempio n. 2
0
 private EscapeSequencer(TextWriter textWriter)
 {
     Instance               = this;
     this.textWriter        = textWriter;
     defaultForegroundColor = Console.ForegroundColor;
     defaultBackgroundColor = Console.BackgroundColor;
 }