Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Keys [1/3]

IEnumerable<TKey> System.Collections.Immutable.ImmutableDictionary< TKey, TValue >.Builder.Keys
get

Implements System.Collections.Generic.IReadOnlyDictionary< TKey, TValue >.

Definition at line 198 of file ImmutableDictionary.cs.

199 {
200 get
201 {
203 while (enumerator.MoveNext())
204 {
205 yield return enumerator.Current.Key;
206 }
207 }
208 }