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

◆ Key

object System.Collections.ListDictionaryInternal.NodeEnumerator.Key
get

Implements System.Collections.IDictionaryEnumerator.

Definition at line 33 of file ListDictionaryInternal.cs.

34 {
35 get
36 {
37 if (current == null)
38 {
39 throw new InvalidOperationException(SR.InvalidOperation_EnumOpCantHappen);
40 }
41 return current.key;
42 }
43 }