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

◆ Current

T System.Collections.Immutable.ImmutableStack< T >.Enumerator.Current
get

Definition at line 60 of file ImmutableStack.cs.

61 {
62 get
63 {
64 if (_remainingStack == null || _remainingStack.IsEmpty)
65 {
66 throw new InvalidOperationException();
67 }
68 return _remainingStack.Peek();
69 }
70 }