List is a collection which maintains an ordering for its elements.

Namespace: yWorks.yFiles.Util
Assembly: yWorks.yFilesNET.Algorithms (in yWorks.yFilesNET.Algorithms.dll) Version: 4.1.0.1 (4.1.0.1)

Syntax

C#
public interface IList : ICollection, IList, 
	ICollection, IList<Object>, ICollection<Object>, 
	IEnumerable<Object>, IEnumerable
Visual Basic
Public Interface IList _
	Inherits ICollection, IList, ICollection, IList(Of Object),  _
	ICollection(Of Object), IEnumerable(Of Object), IEnumerable

Remarks

List is a collection which maintains an ordering for its elements. Every element in the list has an index.

See Also