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

◆ ConcurrentBag() [2/2]

Definition at line 400 of file ConcurrentBag.cs.

401 {
402 if (collection == null)
403 {
404 throw new ArgumentNullException("collection", System.SR.ConcurrentBag_Ctor_ArgumentNullException);
405 }
408 foreach (T item in collection)
409 {
411 }
412 }
WorkStealingQueue GetCurrentThreadWorkStealingQueue(bool forceCreate)
readonly ThreadLocal< WorkStealingQueue > _locals
static string ConcurrentBag_Ctor_ArgumentNullException
Definition SR.cs:52
Definition SR.cs:7

References System.Collections.Concurrent.ConcurrentBag< T >._emptyToNonEmptyListTransitionCount, System.Collections.Concurrent.ConcurrentBag< T >._locals, System.collection, System.SR.ConcurrentBag_Ctor_ArgumentNullException, System.Collections.Concurrent.ConcurrentBag< T >.GetCurrentThreadWorkStealingQueue(), and System.item.