NameValueCollection Constructor (Int32, NameValueCollection)
Copies the entries from the specified NameValueCollection to a new NameValueCollection with the specified initial capacity or the same initial capacity as the number of entries copied, whichever is greater, and using the default case-insensitive hash code provider and the default case-insensitive comparer.
Assembly: System (in System.dll)
'Declaration Public Sub New ( _ capacity As Integer, _ col As NameValueCollection _ ) 'Usage Dim capacity As Integer Dim col As NameValueCollection Dim instance As New NameValueCollection(capacity, _ col)
Parameters
- capacity
- Type: System.Int32
The initial number of entries that the NameValueCollection can contain.
- col
- Type: System.Collections.Specialized.NameValueCollection
The NameValueCollection to copy to the new NameValueCollection instance.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | capacity is less than zero. |
| ArgumentNullException | col is Nothing. |
The capacity of a NameValueCollection is the number of elements that the NameValueCollection can hold. As elements are added to a NameValueCollection, the capacity is automatically increased as required by reallocating the internal array.
If the size of the collection can be estimated, specifying the initial capacity eliminates the need to perform a number of resizing operations while adding elements to the NameValueCollection.
The hash code provider dispenses hash codes for keys in the NameValueCollection. The default hash code provider is the CaseInsensitiveHashCodeProvider.
The comparer determines whether two keys are equal. The default comparer is the CaseInsensitiveComparer.
This constructor is an O(n) operation, where n is capacity. If the number of elements in col is greater than capacity, this constructor becomes an O(n + m) operation, where n is capacity and m is the number of elements in col.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.