NameValueCollection::Add Method (NameValueCollection^)
Copies the entries in the specified NameValueCollection to the current NameValueCollection.
Assembly: System (in System.dll)
Parameters
- c
-
Type:
System.Collections.Specialized::NameValueCollection^
The NameValueCollection to copy to the current NameValueCollection.
| Exception | Condition |
|---|---|
| NotSupportedException | The collection is read-only. |
| ArgumentNullException | c is null. |
If a key in c already exists in the target NameValueCollection instance, the associated value in c is added to the existing comma-separated list of values associated with the same key in the target NameValueCollection instance.
If Count already equals the capacity, the capacity of the NameValueCollection is increased by automatically reallocating the internal array, and the existing elements are copied to the new array before the new element is added.
If Count is less than the capacity, this method is an O(1) operation. If the capacity needs to be increased to accommodate the new element, this method becomes an O(n) operation, where n is Count.
Available since 10
.NET Framework
Available since 1.1