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

◆ Value

object System.Collections.ListDictionaryInternal.NodeEnumerator.Value
get

Implements System.Collections.IDictionaryEnumerator.

Definition at line 45 of file ListDictionaryInternal.cs.

46 {
47 get
48 {
49 if (current == null)
50 {
51 throw new InvalidOperationException(SR.InvalidOperation_EnumOpCantHappen);
52 }
53 return current.value;
54 }
55 }