ConcurrentBag<T>.IProducerConsumerCollection<T>.TryAdd(T) 方法

定义

尝试将一个对象添加到 ConcurrentBag<T> 中。

 virtual bool System.Collections.Concurrent.IProducerConsumerCollection<T>.TryAdd(T item) = System::Collections::Concurrent::IProducerConsumerCollection<T>::TryAdd;
bool IProducerConsumerCollection<T>.TryAdd (T item);
abstract member System.Collections.Concurrent.IProducerConsumerCollection<T>.TryAdd : 'T -> bool
override this.System.Collections.Concurrent.IProducerConsumerCollection<T>.TryAdd : 'T -> bool
Function TryAdd (item As T) As Boolean Implements IProducerConsumerCollection(Of T).TryAdd

参数

item
T

要添加到 ConcurrentBag<T> 的对象。 该值对于引用类型可以是空引用(在 Visual Basic 中为 Nothing)。

返回

始终返回 true。

实现

适用于

另请参阅