namespace MemoryPools.Collections.Specialized { /// /// Collection, which is working on shared btw all Pooling* collections buckets /// public class PoolingStackCanon : PoolingStackBase where T : class { protected override IPoolingNode CreateNodeHolder() { return (IPoolingNode) Pool>.Get().Init(PoolsDefaults.DefaultPoolBucketSize); } } }