示例#1
0
 public StorageMemoryOwner(StorageMemoryPool pool, int minimumLength)
 {
     _arrayPool = pool._arrayPool;
     Memory     = _arrayPool.Rent(minimumLength);
 }
示例#2
0
 public StorageMemoryOwner(StorageMemoryPool pool, int minimumLength)
 {
     this.arrayPool = pool.arrayPool;
     this.Memory    = this.arrayPool.Rent(minimumLength);
 }