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

◆ Current [2/2]

object? IEnumerator. System.Collections.Generic.HashSet< T >.Enumerator.Current
get

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

Definition at line 36 of file HashSet.cs.

37 {
38 get
39 {
40 if (_index == 0 || _index == _hashSet._count + 1)
41 {
42 ThrowHelper.ThrowInvalidOperationException_InvalidOperation_EnumOpCantHappen();
43 }
44 return _current;
45 }
46 }