8 overrides of KeysCore
System.Collections.Immutable (8)
System\Collections\Frozen\EmptyFrozenDictionary.cs (1)
17
private protected override TKey[]
KeysCore
=> Array.Empty<TKey>();
System\Collections\Frozen\Int32\Int32FrozenDictionary.cs (1)
51
private protected override int[]
KeysCore
=> _hashTable.HashCodes;
System\Collections\Frozen\KeysAndValuesFrozenDictionary.cs (1)
49
private protected sealed override TKey[]
KeysCore
=> _keys;
System\Collections\Frozen\SmallFrozenDictionary.cs (1)
32
private protected override TKey[]
KeysCore
=> _keys;
System\Collections\Frozen\SmallValueTypeComparableFrozenDictionary.cs (1)
41
private protected override TKey[]
KeysCore
=> _keys;
System\Collections\Frozen\SmallValueTypeDefaultComparerFrozenDictionary.cs (1)
30
private protected override TKey[]
KeysCore
=> _keys;
System\Collections\Frozen\String\LengthBucketsFrozenDictionary.cs (1)
47
private protected override string[]
KeysCore
=> _keys;
System\Collections\Frozen\String\OrdinalStringFrozenDictionary.cs (1)
70
private protected override string[]
KeysCore
=> _keys;
2 references to KeysCore
System.Collections.Immutable (2)
System\Collections\Frozen\FrozenDictionary.cs (2)
276
public ImmutableArray<TKey> Keys => ImmutableCollectionsMarshal.AsImmutableArray(
KeysCore
);
337
TKey[] keys =
KeysCore
;