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

◆ Count

override int System.Threading.Channels.BoundedChannel< T >.BoundedChannelReader.Count
get

Definition at line 28 of file BoundedChannel.cs.

29 {
30 get
31 {
33 lock (parent.SyncObj)
34 {
35 return parent._items.Count;
36 }
37 }
38 }