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