NameObjectCollectionBase.BaseAdd Method (String, Object)
Adds an entry with the specified key and value into the NameObjectCollectionBase instance.
Assembly: System (in System.dll)
Parameters
- name
-
Type:
System.String
The String key of the entry to add. The key can be null.
- value
-
Type:
System.Object
The Object value of the entry to add. The value can be null.
| Exception | Condition |
|---|---|
| NotSupportedException | The collection is read-only. |
If Count already equals the capacity, the capacity of the NameObjectCollectionBase 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.
The following code example uses BaseAdd to create a new NameObjectCollectionBase with elements from an IDictionary.
Available since 10
.NET Framework
Available since 1.1