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