Skip to main content

DXCollectionBase<T>.AddRange(ICollection) Method

Adds a collection of elements to the end of the collection.

Namespace: DevExpress.Utils

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public virtual void AddRange(
    ICollection collection
)

Parameters

Name Type Description
collection ICollection

A ICollection object which represents the collection of elements to append to the collection.

Remarks

Objects are appended to the collection in the same order they have in the added collection.

See Also