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

◆ Value

object System.Collections.Hashtable.HashtableEnumerator.Value
get

Implements System.Collections.IDictionaryEnumerator.

Definition at line 317 of file Hashtable.cs.

318 {
319 get
320 {
321 if (!_current)
322 {
323 throw new InvalidOperationException(SR.InvalidOperation_EnumOpCantHappen);
324 }
325 return _currentValue;
326 }
327 }