예제 #1
0
파일: LogWriter.cs 프로젝트: mortend/uno
 public override void Write(char[] buffer, int index, int count)
 {
     lock (_state)
     {
         _state.Flush(Inner);
         Inner.Write(buffer, index, count);
     }
 }
예제 #2
0
파일: Log.cs 프로젝트: lee1431/uno
 public void Flush()
 {
     lock (_state)
         _state.Flush(OutWriter.Inner);
 }