Skip to main content

DXCollectionBase<T>.Add(T) Method

Adds the specified object to the collection.

Namespace: DevExpress.Utils

Assembly: DevExpress.Data.v24.2.dll

NuGet Package: DevExpress.Data

#Declaration

public virtual int Add(
    T value
)

#Parameters

Name Type Description
value T

A <T> object to append to the collection.

#Returns

Type Description
Int32

An integer value indicating the position into which the new element was inserted.

#Remarks

This method adds the object to the end of the collection.

See Also