NameValueCollection Constructor (NameValueCollection)
Copies the entries from the specified NameValueCollection to a new NameValueCollection with the same initial capacity as the number of entries copied and using the same hash code provider and the same comparer as the source collection.
Assembly: System (in System.dll)
'Declaration Public Sub New ( _ col As NameValueCollection _ ) 'Usage Dim col As NameValueCollection Dim instance As New NameValueCollection(col)
Parameters
- col
- Type: System.Collections.Specialized.NameValueCollection
The NameValueCollection to copy to the new NameValueCollection instance.
| Exception | Condition |
|---|---|
| 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.
The elements of the new NameValueCollection are sorted in the same order as the source NameValueCollection.
This constructor is an O(n) operation, where n 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.