[]
        
(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)
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)
Parameters
Type Name Description
object[] items

An array of items.