Hashtable Constructor (IDictionary)
Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll)
Parameters
- d
- Type: System.Collections.IDictionary
The IDictionary object to copy to a new Hashtable object.
| Exception | Condition |
|---|---|
| ArgumentNullException | d is a null reference (Nothing in Visual Basic). |
The initial capacity is set to the number of elements in the source dictionary. Capacity is automatically increased as required based on the load factor.
The load factor is the maximum ratio of elements to buckets. A smaller load factor means faster lookup at the cost of increased memory consumption.
When the actual load factor reaches the specified load factor, the number of buckets is automatically increased to the smallest prime number that is larger than twice the current number of buckets.
The hash code provider dispenses hash codes for keys in the Hashtable object. The default hash code provider is the key's implementation of Object.GetHashCode.
The comparer determines whether two keys are equal. Every key in a Hashtable must be unique. The default comparer is the key's implementation of Object.Equals.
The elements of the new Hashtable are sorted in the same order in which the enumerator iterates through the IDictionary object.
This constructor is an O(n) operation, where n is the number of elements in the d parameter.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.