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

◆ Values [1/3]

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

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

Definition at line 212 of file ImmutableDictionary.cs.

213 {
214 get
215 {
217 while (enumerator.MoveNext())
218 {
219 yield return enumerator.Current.Value;
220 }
221 }
222 }