Exemplo n.º 1
0
 private PooledHashSet(ObjectPool <PooledHashSet <T> > pool)
 {
     _pool = pool;
 }
Exemplo n.º 2
0
 private PooledDictionary(ObjectPool <PooledDictionary <K, V> > pool)
 {
     _pool = pool;
 }
Exemplo n.º 3
0
 private PooledArray(ObjectPool <PooledArray <T> > pool) :
     this()
 {
     _pool = pool;
 }