Ejemplo n.º 1
0
        internal static DictionaryImpl <TKey, TValue> CreateRef <TKey, TValue>(LockFreeConcurrentDictionary <TKey, TValue> topDict, int capacity)
            where TKey : class
        {
            var result = new DictionaryImplRef <TKey, TKey, TValue>(capacity, topDict);

            return(result);
        }
Ejemplo n.º 2
0
 internal DictionaryImplRef(int capacity, DictionaryImplRef <TKey, TKeyStore, TValue> other)
     : base(capacity, other)
 {
 }