コード例 #1
0
ファイル: DictionaryImpl.cs プロジェクト: ywscr/NonBlocking
        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);
        }
コード例 #2
0
 internal DictionaryImplRef(int capacity, DictionaryImplRef <TKey, TKeyStore, TValue> other)
     : base(capacity, other)
 {
 }