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

Namespace: yWorks.yFiles.Util
Assembly: yWorks.yFilesWPF.Algorithms (in yWorks.yFilesWPF.Algorithms.dll) Version: 2.2.0.2 (2.2.0.2)

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