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

◆ Entry

DictionaryEntry System.Collections.Hashtable.HashtableEnumerator.Entry
get

Implements System.Collections.IDictionaryEnumerator.

Definition at line 285 of file Hashtable.cs.

286 {
287 get
288 {
289 if (!_current)
290 {
291 throw new InvalidOperationException(SR.InvalidOperation_EnumOpCantHappen);
292 }
293 return new DictionaryEntry(_currentKey, _currentValue);
294 }
295 }