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

◆ Key

object System.Collections.Hashtable.HashtableEnumerator.Key
get

Implements System.Collections.IDictionaryEnumerator.

Definition at line 273 of file Hashtable.cs.

274 {
275 get
276 {
277 if (!_current)
278 {
279 throw new InvalidOperationException(SR.InvalidOperation_EnumNotStarted);
280 }
281 return _currentKey;
282 }
283 }