CollectionsUtil.CreateCaseInsensitiveHashtable 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立忽略字串大小寫的 Hashtable 類別的新執行個體。
多載
CreateCaseInsensitiveHashtable() |
建立具有預設初始容量的 Hashtable 類別之新的區分大小寫執行個體。 |
CreateCaseInsensitiveHashtable(IDictionary) |
從指定的字典複製項目到具有與複製項目數相同的初始容量之 Hashtable 類別之新的不區分大小寫執行個體。 |
CreateCaseInsensitiveHashtable(Int32) |
建立具有指定初始容量的 Hashtable 類別之新的區分大小寫執行個體。 |
CreateCaseInsensitiveHashtable()
建立具有預設初始容量的 Hashtable 類別之新的區分大小寫執行個體。
public:
static System::Collections::Hashtable ^ CreateCaseInsensitiveHashtable();
public static System.Collections.Hashtable CreateCaseInsensitiveHashtable ();
static member CreateCaseInsensitiveHashtable : unit -> System.Collections.Hashtable
Public Shared Function CreateCaseInsensitiveHashtable () As Hashtable
傳回
具有預設初始容量的 Hashtable 類別之新的區分大小寫執行個體。
備註
CreateCaseInsensitiveHashtable不使用 方法,請使用 Hashtable.Hashtable(IEqualityComparer) 建構函式來建立不區分大小寫的Hashtable類別。
另請參閱
適用於
CreateCaseInsensitiveHashtable(IDictionary)
從指定的字典複製項目到具有與複製項目數相同的初始容量之 Hashtable 類別之新的不區分大小寫執行個體。
public:
static System::Collections::Hashtable ^ CreateCaseInsensitiveHashtable(System::Collections::IDictionary ^ d);
public static System.Collections.Hashtable CreateCaseInsensitiveHashtable (System.Collections.IDictionary d);
static member CreateCaseInsensitiveHashtable : System.Collections.IDictionary -> System.Collections.Hashtable
Public Shared Function CreateCaseInsensitiveHashtable (d As IDictionary) As Hashtable
參數
要複製至新的不區分大小寫之 IDictionary 的 Hashtable。
傳回
Hashtable 類別之新的不區分大小寫執行個體,含有來自指定 IDictionary 的項目。
例外狀況
d
為 null
。
備註
CreateCaseInsensitiveHashtable不使用 方法,請使用 Hashtable.Hashtable(IDictionary, IEqualityComparer) 建構函式來建立不區分大小寫的Hashtable類別。
另請參閱
- Hashtable
- IDictionary
- CaseInsensitiveHashCodeProvider
- CaseInsensitiveComparer
- 在集合中執行 Culture-Insensitive 字串作業
適用於
CreateCaseInsensitiveHashtable(Int32)
建立具有指定初始容量的 Hashtable 類別之新的區分大小寫執行個體。
public:
static System::Collections::Hashtable ^ CreateCaseInsensitiveHashtable(int capacity);
public static System.Collections.Hashtable CreateCaseInsensitiveHashtable (int capacity);
static member CreateCaseInsensitiveHashtable : int -> System.Collections.Hashtable
Public Shared Function CreateCaseInsensitiveHashtable (capacity As Integer) As Hashtable
參數
傳回
具有指定初始容量的 Hashtable 類別之新的區分大小寫執行個體。
例外狀況
capacity
小於零。
備註
CreateCaseInsensitiveHashtable不使用 方法,請使用 Hashtable.Hashtable(Int32, IEqualityComparer) 建構函式來建立不區分大小寫的Hashtable類別。