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

◆ Pop()

override object System.Diagnostics.CorrelationManager.AsyncLocalStackWrapper.Pop ( )
inlinevirtual

Reimplemented from System.Collections.Stack.

Definition at line 92 of file CorrelationManager.cs.

93 {
94 StackNode value = _stack.Value;
95 if (value == null)
96 {
97 base.Pop();
98 }
99 _stack.Value = value.Prev;
100 return value.Value;
101 }

References System.Diagnostics.CorrelationManager.AsyncLocalStackWrapper._stack, and System.value.