Share via


Hashtable Constructor (Int32)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Initializes a new, empty instance of the Hashtable class using the specified initial capacity, and the default load factor, hash code provider, and comparer.

Namespace:  System.Collections
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Sub New ( _
    capacity As Integer _
)
public Hashtable(
    int capacity
)
public:
Hashtable(
    int capacity
)
new : 
        capacity:int -> Hashtable
public function Hashtable(
    capacity : int
)

Parameters

Exceptions

Exception Condition
ArgumentOutOfRangeException

capacity is less than zero.

Remarks

Specifying the initial capacity eliminates the need to perform a number of resizing operations while adding elements to the Hashtable object. 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. 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.

This constructor is an O(n) operation, where n is capacity.

.NET Framework Security

See Also

Reference

Hashtable Class

Hashtable Overload

System.Collections Namespace