ConcurrentBag<T> 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
ConcurrentBag<T>() |
初始化 ConcurrentBag<T> 類別的新執行個體。 |
ConcurrentBag<T>(IEnumerable<T>) |
初始化 ConcurrentBag<T> 類別的新執行個體,這個類別包含自指定之集合複製過來的項目。 |
ConcurrentBag<T>()
初始化 ConcurrentBag<T> 類別的新執行個體。
public:
ConcurrentBag();
public ConcurrentBag ();
Public Sub New ()
另請參閱
適用於
ConcurrentBag<T>(IEnumerable<T>)
初始化 ConcurrentBag<T> 類別的新執行個體,這個類別包含自指定之集合複製過來的項目。
public:
ConcurrentBag(System::Collections::Generic::IEnumerable<T> ^ collection);
public ConcurrentBag (System.Collections.Generic.IEnumerable<T> collection);
new System.Collections.Concurrent.ConcurrentBag<'T> : seq<'T> -> System.Collections.Concurrent.ConcurrentBag<'T>
Public Sub New (collection As IEnumerable(Of T))
參數
- collection
- IEnumerable<T>
集合,要將其項目複製至新的 ConcurrentBag<T>。
例外狀況
collection
是 null 參考 (在 Visual Basic 中為 Nothing)。