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
コード例 #1
0
ファイル: EscapeSequencer.cs プロジェクト: modulexcite/pvc
 private EscapeSequencer(TextWriter textWriter)
 {
     Instance = this;
     this.textWriter = textWriter;
     defaultForegroundColor = Console.ForegroundColor;
     defaultBackgroundColor = Console.BackgroundColor;
 }
コード例 #2
0
ファイル: EscapeSequencer.cs プロジェクト: pauljz/pvc
 private EscapeSequencer(TextWriter textWriter)
 {
     Instance               = this;
     this.textWriter        = textWriter;
     defaultForegroundColor = Console.ForegroundColor;
     defaultBackgroundColor = Console.BackgroundColor;
 }