Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
ToList()
[2/2]
List
<
T
>
System.Collections.Concurrent.ConcurrentStack
<
T
>.ToList
(
Node
curr
)
inline
private
Definition at line
321
of file
ConcurrentStack.cs
.
322
{
323
List<T>
list
=
new
List<T>
();
324
while
(
curr
!=
null
)
325
{
326
list
.Add(
curr
._value);
327
curr
=
curr
._next;
328
}
329
return
list
;
330
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.ExceptionArgument.list
@ list
References
System.list
.
System
Collections
Concurrent
ConcurrentStack
Generated by
1.10.0