KeyedByTypeCollection<TItem> 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 KeyedByTypeCollection<TItem> 類別的新執行個體。
多載
KeyedByTypeCollection<TItem>() |
初始化 KeyedByTypeCollection<TItem> 類別的新執行個體。 |
KeyedByTypeCollection<TItem>(IEnumerable<TItem>) |
為物件的特定列舉型別初始化 KeyedByTypeCollection<TItem> 類別的新執行個體。 |
KeyedByTypeCollection<TItem>()
初始化 KeyedByTypeCollection<TItem> 類別的新執行個體。
public:
KeyedByTypeCollection();
public KeyedByTypeCollection ();
Public Sub New ()
適用於
KeyedByTypeCollection<TItem>(IEnumerable<TItem>)
為物件的特定列舉型別初始化 KeyedByTypeCollection<TItem> 類別的新執行個體。
public:
KeyedByTypeCollection(System::Collections::Generic::IEnumerable<TItem> ^ items);
public KeyedByTypeCollection (System.Collections.Generic.IEnumerable<TItem> items);
new System.Collections.Generic.KeyedByTypeCollection<'Item> : seq<'Item> -> System.Collections.Generic.KeyedByTypeCollection<'Item>
Public Sub New (items As IEnumerable(Of TItem))
參數
- items
- IEnumerable<TItem>
泛型型別 IEnumerable<T> 的 Object 可以用來初始化集合。
例外狀況
items
為 null
。