Beispiel #1
0
 public InMemoryTransport(int initialCapacity = 512)
 {
     this.bufferWriter = new BufferWriter(initialCapacity);
 }
 public BufferWriterMemory(BufferWriter bufferWriter, int offset, int count)
 {
     this.BufferWriter = bufferWriter;
     this.Offset       = offset;
     this.Count        = count;
 }