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

◆ Count

Implements System.Collections.ICollection.

Definition at line 29 of file ConcurrentStack.cs.

30 {
31 get
32 {
33 int num = 0;
34 for (Node node = _head; node != null; node = node._next)
35 {
36 num++;
37 }
38 return num;
39 }
40 }