HybridDictionary Constructor (Int32)
Creates a case-sensitive HybridDictionary with the specified initial size.
Assembly: System (in System.dll)
Parameters
- initialSize
- Type: System.Int32
The approximate number of entries that the HybridDictionary can initially contain.
If the initial size of the collection is greater than the optimal size for a ListDictionary, the collection is stored in a Hashtable to avoid the overhead of copying elements from the ListDictionary to the Hashtable.
By default, the collection is case-sensitive and uses the key's implementation of Object.GetHashCode as the hash code provider and the key's implementation of Object.Equals as the comparer.
The comparer determines whether two keys are equal. Every key in a HybridDictionary must be unique.
This constructor is an O(n) operation, where n is initialSize.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.