Skip to main content
A newer version of this page is available. .
Tab

Collection<T>.AddRange(IEnumerable<T>) Method

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public void AddRange(
    IEnumerable<T> items
)

Parameters

Name Type Description
items IEnumerable<T>

A IEnumerable<T> object, which is the collection of items to append to the collection.

Remarks

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

See Also