NameValueCollection.NameValueCollection(Int32, NameValueCollection) Constructor
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)
public NameValueCollection ( int capacity, NameValueCollection col )
public function NameValueCollection ( capacity : int, col : NameValueCollection )
Not applicable.
Parameters
- capacity
The initial number of entries that the NameValueCollection can contain.
- col
The NameValueCollection to copy to the new NameValueCollection instance.
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 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.