ConcurrentStack<T>.IProducerConsumerCollection<T>.TryAdd 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試將物件加入至 IProducerConsumerCollection<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
要加入至 IProducerConsumerCollection<T> 的物件。 值可以是參考類型的 null 參考 (在 Visual Basic 中為 Nothing)。
傳回
如已成功新增物件,則為 true
;否則為 false
。
實作
備註
針對 ConcurrentStack<T>,此作業一律會將 物件插入頂端 ConcurrentStack<T> ,並傳回 true。