CollectionsUtil.CreateCaseInsensitiveHashtable 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建 Hashtable 类的新实例,该实例忽略字符串的大小写。
重载
CreateCaseInsensitiveHashtable() |
创建 Hashtable 类具有默认初始容量的不区分大小写的新实例。 |
CreateCaseInsensitiveHashtable(IDictionary) |
将项从指定字典复制到 Hashtable 类的不区分大小写的新实例,该实例具有与复制项的数量相同的初始容量。 |
CreateCaseInsensitiveHashtable(Int32) |
创建 Hashtable 类具有指定初始容量的不区分大小写的新实例。 |
CreateCaseInsensitiveHashtable()
- Source:
- CollectionsUtil.cs
- Source:
- CollectionsUtil.cs
- Source:
- CollectionsUtil.cs
创建 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 类具有默认初始容量的不区分大小写的新实例。
注解
使用 构造函数创建不区分大小写Hashtable的类,而不是使用 CreateCaseInsensitiveHashtableHashtable.Hashtable(IEqualityComparer) 方法。
另请参阅
适用于
CreateCaseInsensitiveHashtable(IDictionary)
- Source:
- CollectionsUtil.cs
- Source:
- CollectionsUtil.cs
- Source:
- CollectionsUtil.cs
将项从指定字典复制到 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
。
注解
使用 构造函数创建不区分大小写Hashtable的类,而不是使用 CreateCaseInsensitiveHashtableHashtable.Hashtable(IDictionary, IEqualityComparer) 方法。
另请参阅
适用于
CreateCaseInsensitiveHashtable(Int32)
- Source:
- CollectionsUtil.cs
- Source:
- CollectionsUtil.cs
- Source:
- CollectionsUtil.cs
创建 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
小于零。
注解
使用 构造函数创建不区分大小写Hashtable的类,而不是使用 CreateCaseInsensitiveHashtableHashtable.Hashtable(Int32, IEqualityComparer) 方法。