BaseObjectSpace.CreateCollection(Type) Method
In This Article
Creates and initializes a collection of objects of the specified type.
Namespace: DevExpress.ExpressApp
Assembly: DevExpress.ExpressApp.v24.2.dll
NuGet Package: DevExpress.ExpressApp
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
object |
Type | The type of objects to include in the collection. |
#Returns
Type | Description |
---|---|
IList | A IList collection that includes objects of the specified type. |
#Remarks
Use this method to create a collection of objects of the specified type. This method calls a protected virtual method, CreateCollection, which must be overridden in the BaseObjectSpace class descendants.
The newly created collection will use the current Object Space to load and save persistent objects.
#Implements
See Also