[]
Adds an array of objects to the collection. This methods clears the collection before adding new items. Don't use it if you want to keep preexisting items.
public virtual void AddRange(T[] items)
Public Overridable Sub AddRange(items As T())
| Type | Name | Description |
|---|---|---|
| T[] | items | An array of items. |
Adds an array of objects to the collection. This methods clears the collection before adding new items. Don't use it if you want to keep preexisting items.
public void AddRange(object[] items)
Public Sub AddRange(items As Object())
| Type | Name | Description |
|---|---|---|
| object[] | items | An array of items. |