Represents a collection of objects that can be individually accessed by a 64-bit index.

Namespace:  Asprosys.Unmanaged.Collections
Assembly:  AsproSet (in AsproSet.dll) Version: 1.0.0.0 (1.0.0.61)

Syntax

C#
public interface ILongList<T> : IList<T>, 
	ICollection<T>, IEnumerable<T>, IEnumerable
Visual Basic (Declaration)
Public Interface ILongList(Of T) _
	Implements IList(Of T), ICollection(Of T),  _
	IEnumerable(Of T), IEnumerable
Visual C++
generic<typename T>
public interface class ILongList : IList<T>, 
	ICollection<T>, IEnumerable<T>, IEnumerable

Type Parameters

T
The type of elements in the long list.

Remarks

The ILongList(T) interface is an extension of the standard IList<(Of <(T>)>) interface to collections that could have more than MaxValue elements.

See Also