8 overrides of CountCore
System.Collections.Immutable (8)
System\Collections\Frozen\EmptyFrozenDictionary.cs (1)
26private protected override int CountCore => 0;
System\Collections\Frozen\Int32\Int32FrozenDictionary.cs (1)
60private protected override int CountCore => _hashTable.Count;
System\Collections\Frozen\KeysAndValuesFrozenDictionary.cs (1)
58private protected sealed override int CountCore => _hashTable.Count;
System\Collections\Frozen\SmallFrozenDictionary.cs (1)
34private protected override int CountCore => _keys.Length;
System\Collections\Frozen\SmallValueTypeComparableFrozenDictionary.cs (1)
44private protected override int CountCore => _keys.Length;
System\Collections\Frozen\SmallValueTypeDefaultComparerFrozenDictionary.cs (1)
33private protected override int CountCore => _keys.Length;
System\Collections\Frozen\String\LengthBucketsFrozenDictionary.cs (1)
56private protected override int CountCore => _keys.Length;
System\Collections\Frozen\String\OrdinalStringFrozenDictionary.cs (1)
73private protected override int CountCore => _hashTable.Count;
1 reference to CountCore
System.Collections.Immutable (1)
System\Collections\Frozen\FrozenDictionary.cs (1)
314public int Count => CountCore;