4 references to DEFAULT_CAPACITY
mscorlib (4)
system\Collections\Concurrent\ConcurrentDictionary.cs (4)
177public ConcurrentDictionary() : this(DefaultConcurrencyLevel, DEFAULT_CAPACITY, true, EqualityComparer<TKey>.Default) { } 221public ConcurrentDictionary(IEqualityComparer<TKey> comparer) : this(DefaultConcurrencyLevel, DEFAULT_CAPACITY, true, comparer) { } 271: this(concurrencyLevel, DEFAULT_CAPACITY, false, comparer) 622Tables newTables = new Tables(new Node[DEFAULT_CAPACITY], m_tables.m_locks, new int[m_tables.m_countPerLock.Length], m_tables.m_comparer);