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