Exemple #1
0
 public void Write(string format, object arg0)
 {
     CurrentLineBuffer.AppendFormat(format, arg0);
 }
Exemple #2
0
 public void WriteLine(string format, params object[] args)
 {
     CurrentLineBuffer.AppendFormat(format, args);
     FlushCurrentLineBuffer();
 }