Interface IArrayListT

IArrayList<T> interface

Aspose.3D has its own highly optimized implementation of List for better loading/saving performance Only this interface is exposed for user with IList compatible and similar interfaces.

public interface IArrayList<T> : IList<T>
ParameterDescription
T

Methods

NameDescription
AddRange(IEnumerable<T>)
AddRange(IList<T>)
ToArray()Converts all items in the list to an array

See Also