[]
        
(Showing Draft Content)

C1.Schedule.BaseCollection-1.AddRange

AddRange Method

AddRange(T[])

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.

Declaration
public virtual void AddRange(T[] items)
Public Overridable Sub AddRange(items As T())
Parameters
Type Name Description
T[] items

An array of items.

AddRange(object[])

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.

Declaration
public void AddRange(object[] items)
Public Sub AddRange(items As Object())
Parameters
Type Name Description
object[] items

An array of items.