Пример #1
0
 public DupeWriter(MemoryStream strm, DupeThread thread)
 {
     m_Thread   = thread;
     m_Encoding = Utility.UTF8;
     m_Buffer   = new byte[BufferSize];
     m_File     = strm;
 }
Пример #2
0
 public DupeReader(MemoryStream stream, DupeThread thread) : base()
 {
     this.m_File = new BinaryReader(stream);
     m_Thread    = thread;
 }