IArrayList
Overview
IArrayList is a interface in Aspose.3D FOSS for .NET.
Inherits from: IList<T>, ICollection<T>, IEnumerable<T>.
Aspose.3D has its own highly optimized implementation of List{T} for better loading/saving performance Only this interface is exposed for user with IList{T} compatible and similar interfaces.
This interface provides 3 methods for working with IArrayList objects in .NET programs.
Available methods include: AddRange, ToArray.
All public members are accessible to any .NET application after installing the Aspose.3D FOSS for .NET package.
Methods
| Signature | Description |
|---|---|
ToArray() | Converts all items in the list to an array Items array |
AddRange(list: IList<T>) | Adds the elements of the specified list to the end of this list. |
AddRange(collection: IEnumerable<T>) | Adds the elements of the specified collection to the end of this list. |