Beispiel #1
0
 public void Close()
 {
     if (!String.IsNullOrWhiteSpace(CurrentLineBuffer.ToString()))
     {
         FlushCurrentLineBuffer();
     }
     InnerWriter.Close();
 }
Beispiel #2
0
 public bool IsInNewLine()
 {
     return(CurrentLineBuffer.Length < 30 && String.IsNullOrWhiteSpace(CurrentLineBuffer.ToString()));
 }