src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Concurrent\ConcurrentDictionary.cs (5)
74: this(DefaultConcurrencyLevel, DefaultCapacity, growLockArray: true, null) { }
108: this(DefaultConcurrencyLevel, DefaultCapacity, growLockArray: true, comparer) { }
288ICollection<KeyValuePair<TKey, TValue>> c => Math.Max(DefaultCapacity, c.Count),
289IReadOnlyCollection<KeyValuePair<TKey, TValue>> rc => Math.Max(DefaultCapacity, rc.Count),
290_ => DefaultCapacity,