コード例 #1
0
 public void Dispose()
 {
     if (writer != null)
     {
         writer.Dispose();
         writer = null;
     }
 }
コード例 #2
0
 private BinaryLogWriter(string filePath)
 {
     this.filePath = filePath;
     this.writer   = new TreeBinaryWriter(filePath);
 }