StringCollection.AddRange Method (String[])
.NET Framework (current version)
Copies the elements of a string array to the end of the StringCollection.
Assembly: System (in System.dll)
Parameters
- value
-
Type:
System.String[]
An array of strings to add to the end of the StringCollection. The array itself can not be null but it can contain elements that are null.
| Exception | Condition |
|---|---|
| ArgumentNullException | value is null. |
StringCollection accepts null as a valid value and allows duplicate elements.
If the StringCollection can accommodate the new elements without increasing the capacity, this method is an O(n) operation, where n is the number of elements to be added. If the capacity needs to be increased to accommodate the new elements, this method becomes an O(n + m) operation, where n is the number of elements to be added and m is Count.
The following code example adds new elements to the StringCollection.
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Available since 10
.NET Framework
Available since 1.1
Show: