internal static DictionaryImpl <TKey, TValue> CreateRef <TKey, TValue>(ConcurrentDictionary <TKey, TValue> topDict, int capacity) where TKey : class { var result = new DictionaryImplRef <TKey, TKey, TValue>(capacity, topDict); return(result); }
internal DictionaryImplRef(int capacity, DictionaryImplRef <TKey, TKeyStore, TValue> other) : base(capacity, other) { }