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

◆ Count

Implements System.Collections.ICollection.

Definition at line 313 of file ConcurrentBag.cs.

314 {
315 get
316 {
317 if (_workStealingQueues == null)
318 {
319 return 0;
320 }
321 bool lockTaken = false;
322 try
323 {
325 return DangerousCount;
326 }
327 finally
328 {
330 }
331 }
332 }
volatile WorkStealingQueue _workStealingQueues