3 implementations of TryAdd
mscorlib (2)
system\Collections\Concurrent\ConcurrentQueue.cs (1)
227bool IProducerConsumerCollection<T>.TryAdd(T item)
system\Collections\Concurrent\ConcurrentStack.cs (1)
506bool IProducerConsumerCollection<T>.TryAdd(T item)
System (1)
sys\system\collections\concurrent\ConcurrentBag.cs (1)
185bool IProducerConsumerCollection<T>.TryAdd(T item)
1 reference to TryAdd
System (1)
sys\system\collections\concurrent\BlockingCollection.cs (1)
504addingSucceeded = m_collection.TryAdd(item);