Esempio n. 1
0
        // implement Poolable object pattern
        #region "Poolable"

        private TextKeyedCache(ObjectPool <TextKeyedCache <T> > pool)
        {
            _pool    = pool;
            _strings = new StringTable();
        }