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

◆ Current [1/2]

KeyValuePair<TKey, TValue> System.Runtime.CompilerServices.ConditionalWeakTable< TKey, TValue >.Enumerator.Current
get

Implements System.Collections.Generic.IEnumerator< out T >.

Definition at line 23 of file ConditionalWeakTable.cs.

24 {
25 get
26 {
27 if (_currentIndex < 0)
28 {
29 ThrowHelper.ThrowInvalidOperationException_InvalidOperation_EnumOpCantHappen();
30 }
31 return _current;
32 }
33 }